diff options
-rw-r--r-- | perl-install/NEWS | 5 | ||||
-rw-r--r-- | perl-install/detect_devices.pm | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 4842fc7e7..2c2d067b2 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,4 +1,7 @@ -Versino 12.17.1 - 21 March 2009 +- detect_devices: + o only look at valid scsi devices in /sys + +Version 12.17.1 - 21 March 2009 - fix syntax error in nb translation file diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 78348856f..643f3a376 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -202,7 +202,9 @@ sub getSCSI() { my @l; foreach (all($dev_dir)) { - my ($host, $channel, $id, $lun) = split ':' or log::l("bad entry in $dev_dir: $_"), next; + my ($host, $channel, $id, $lun) = split ':'; + defined $lun or log::l("bad entry in $dev_dir: $_"), next; + my $dir = "$dev_dir/$_"; # handle both old and new kernels: |