Displaying 3 results from an estimated 3 matches for "scsiutil".
Did you mean:
  cs_util
  
2012 Nov 05
0
xcp-storage-managers_0.1.1-3_amd64.changes ACCEPTED into unstable
...rs - storage backends for XCP
Closes: 687319 691805 691806 691808
Changes: 
 xcp-storage-managers (0.1.1-3) unstable; urgency=low
 .
   * Added missing dependency on sg3-utils and open-iscsi (Closes: #691806).
   * Fixes path to iscsid in iscsilib.py (Closes: #691805).
   * Fixes path to scsi_id in scsiutil.py, removes unknown --master parameter in
   lvutil.py (Closes: #691808).
   * Fix CDROM guest hotplug bug (LP: #1045739) (Closes: #687319).
   * Added a watch file.
   * Build-Conflicts: xcp-storage-managers, since that's just what happened to
   me at the dh_python2 stage.
Checksums-Sha1: 
 8...
2012 Oct 30
1
Bug#691806: xcp-storage-managers: Missing dependency
Package: xcp-storage-managers
Version: 0.1.1-2
Severity: important
The xcp-storage-managers seems to depends on sg3-utils package which contains the 'sginfo' (/usr/bin/sginfo)  binary called by /usr/lib/xcp/sm/scsiutil.py  script twice (lines 105 and 107).
A simple 'apt-get install sg3-utils' solved this issue so I believe that xcp-storage-managers dependency list needs to include the sg3-utils package.
--System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'test...
2012 Oct 30
1
Bug#691808: xcp-storage-managers: Another wrong binary path + wrong parameter in storage managers backend
...ith the unknown parameter '--master'. I simply removed the strange parameter and the line 302 became
  cmd = [CMD_VGCHANGE, "-an", "", vgname]
Line 345 became:
  cmd = [CMD_VGCHANGE, "-a" + val, "", path]
2. Second problem. Line 86 in /usr/lib/xcp/sm/scsiutil.py calls the 'scsi_id' binary but it is not in the system path. According to Debian manpage, "scsi_id is primarily for use by other utilities  such  as  udev that require a unique SCSI identifier." It is located in /lib/udev directory and uses a different set of parameters. Again,...