diff options
author | Francois Pons <fpons@mandriva.com> | 1999-10-12 11:27:11 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 1999-10-12 11:27:11 +0000 |
commit | e1c4b28c6a055c57bd86df3dbe9da42175055297 (patch) | |
tree | 422c44856c0005af31ef38a6d8a6fdbcccdf677e /perl-install/detect_devices.pm | |
parent | c6e144f2c7b2a2ddd58a3382634da698015ee393 (diff) | |
download | drakx-backup-do-not-use-e1c4b28c6a055c57bd86df3dbe9da42175055297.tar drakx-backup-do-not-use-e1c4b28c6a055c57bd86df3dbe9da42175055297.tar.gz drakx-backup-do-not-use-e1c4b28c6a055c57bd86df3dbe9da42175055297.tar.bz2 drakx-backup-do-not-use-e1c4b28c6a055c57bd86df3dbe9da42175055297.tar.xz drakx-backup-do-not-use-e1c4b28c6a055c57bd86df3dbe9da42175055297.zip |
*** empty log message ***
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r-- | perl-install/detect_devices.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 994fd30fb..1320c778d 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -109,6 +109,8 @@ sub getIDE() { my $num = ord (($d =~ /(.)$/)[0]) - ord 'a'; push @idi, { type => $type, device => basename($d), info => $info, bus => $num/2, id => $num%2 }; } + #- test for zip + push @idi, { type => 'hd', device => 'hde', info => 'ZIP 100', bus => '1', id => 1 } if $::testing; @idi; } |