diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-01-24 13:53:54 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-01-24 13:53:54 +0000 |
commit | 7fa1fd93ecd790ae288102dcb4ec4cf3ca3bc760 (patch) | |
tree | fd53b39c8586419f7f2b128c73167ec94a644495 /perl-install/detect_devices.pm | |
parent | a5bc70922e46a978bde60d3d51454ca03b1f7325 (diff) | |
download | drakx-7fa1fd93ecd790ae288102dcb4ec4cf3ca3bc760.tar drakx-7fa1fd93ecd790ae288102dcb4ec4cf3ca3bc760.tar.gz drakx-7fa1fd93ecd790ae288102dcb4ec4cf3ca3bc760.tar.bz2 drakx-7fa1fd93ecd790ae288102dcb4ec4cf3ca3bc760.tar.xz drakx-7fa1fd93ecd790ae288102dcb4ec4cf3ca3bc760.zip |
no_comment
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r-- | perl-install/detect_devices.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 2f22a3977..a8653a9ff 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -128,7 +128,7 @@ sub getDAC960() { #- We are looking for lines of this format:DAC960#0: #- /dev/rd/c0d0: RAID-7, Online, 17928192 blocks, Write Thru0123456790123456789012 foreach (syslog()) { - my ($device, $info) = m|/dev/rd/(.*?): (.*?),| or next; + my ($device, $info) = m|/dev/(rd/.*?): (.*?),| or next; push @idi, { info => $info, type => 'hd', device => $device }; log::l("DAC960: $device ($info)"); } |