summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/detect_devices.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm
index 51d7cd5ae..5f20432a2 100644
--- a/perl-install/detect_devices.pm
+++ b/perl-install/detect_devices.pm
@@ -184,7 +184,7 @@ sub getSCSI() {
each_index {
my $dev = "sd" . chr($::i + ord('a'));
put_in_hash $_, { device => $dev, media_type => isZipDrive($_) ? 'hd' : isFloppyOrHD($dev) };
- } grep { $_->{raw_type} =~ /Direct-Access/ } @l;
+ } grep { $_->{raw_type} =~ /Direct-Access|Optical Device/ } @l;
each_index {
put_in_hash $_, { device => "st$::i", media_type => 'tape' };