From 02f06bfe6f0badfb3727abc32ea82e16241e8437 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Fri, 21 Sep 2007 11:16:06 +0000 Subject: harddrake: do not auto-configure CD-Rom drives in fstab, it fordbids umounting with hal (install does not configure them in fstab either) --- perl-install/harddrake/data.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'perl-install/harddrake') diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm index 8d5c50637..feffcab2a 100644 --- a/perl-install/harddrake/data.pm +++ b/perl-install/harddrake/data.pm @@ -35,7 +35,7 @@ sub f { # FIXME: add translated items -sub is_removable { $_[0] =~ /FLOPPY|ZIP|DVDROM|CDROM|BURNER/ } +sub is_removable { $_[0] =~ /FLOPPY|ZIP/ } sub set_removable_configurator { my ($class, $device) = @_; @@ -98,7 +98,7 @@ our @tree = icon => "cd.png", configurator => "", detector => sub { f(grep { !(detect_devices::isBurner($_) || detect_devices::isDvdDrive($_)) } &detect_devices::cdroms) }, - checked_on_boot => 1, + checked_on_boot => 0, automatic => 1, }, @@ -108,7 +108,7 @@ our @tree = icon => "cd.png", configurator => "", detector => sub { f(detect_devices::burners()) }, - checked_on_boot => 1, + checked_on_boot => 0, automatic => 1, }, @@ -118,7 +118,7 @@ our @tree = icon => "cd.png", configurator => "", detector => sub { f(grep { ! detect_devices::isBurner($_) } detect_devices::dvdroms()) }, - checked_on_boot => 1, + checked_on_boot => 0, automatic => 1, }, -- cgit v1.2.1