summaryrefslogtreecommitdiffstats
path: root/perl-install/harddrake
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-06-17 08:10:14 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-06-17 08:10:14 +0000
commit2a39a186139dae2e1bbbfe2ab80d13ebe36b82c9 (patch)
treee71a0724b3830fa036c48a9235a8c85f11f15275 /perl-install/harddrake
parent7316cfa0edc48ed49cd6178282228a3f5a9b173f (diff)
downloaddrakx-2a39a186139dae2e1bbbfe2ab80d13ebe36b82c9.tar
drakx-2a39a186139dae2e1bbbfe2ab80d13ebe36b82c9.tar.gz
drakx-2a39a186139dae2e1bbbfe2ab80d13ebe36b82c9.tar.bz2
drakx-2a39a186139dae2e1bbbfe2ab80d13ebe36b82c9.tar.xz
drakx-2a39a186139dae2e1bbbfe2ab80d13ebe36b82c9.zip
(set_removable_configurator) fix typo preventing adding entries in
/etc/fstab for new removable media
Diffstat (limited to 'perl-install/harddrake')
-rw-r--r--perl-install/harddrake/data.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm
index f65ace3ff..833c479b2 100644
--- a/perl-install/harddrake/data.pm
+++ b/perl-install/harddrake/data.pm
@@ -38,7 +38,7 @@ sub is_removable { $_[0] =~ /FLOPPY|ZIP|DVDROM|CDROM|BURNER/ }
sub set_removable_configurator {
my ($class, $device) = @_;
- return "/usr/sbin/drakupdate_fstab --no-flag --add =$device->{device}" if is_removable($class);
+ return "/usr/sbin/drakupdate_fstab --no-flag --auto --add $device->{device}" if is_removable($class);
}
sub set_removable_remover {