diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-04-23 11:56:25 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-04-23 11:56:25 +0000 |
commit | 507bd7737a20d91e21d6d2b833b2344d94960a73 (patch) | |
tree | 19847b326ea6643d9b8ec469549b89ca7344a197 /perl-install/diskdrake/interactive.pm | |
parent | 46d8330d8bd84e1016b2f72306e2591ac9d73389 (diff) | |
download | drakx-backup-do-not-use-507bd7737a20d91e21d6d2b833b2344d94960a73.tar drakx-backup-do-not-use-507bd7737a20d91e21d6d2b833b2344d94960a73.tar.gz drakx-backup-do-not-use-507bd7737a20d91e21d6d2b833b2344d94960a73.tar.bz2 drakx-backup-do-not-use-507bd7737a20d91e21d6d2b833b2344d94960a73.tar.xz drakx-backup-do-not-use-507bd7737a20d91e21d6d2b833b2344d94960a73.zip |
handle --auto when managing removable media
Diffstat (limited to 'perl-install/diskdrake/interactive.pm')
-rw-r--r-- | perl-install/diskdrake/interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm index a037c4fe4..dbb44961d 100644 --- a/perl-install/diskdrake/interactive.pm +++ b/perl-install/diskdrake/interactive.pm @@ -267,7 +267,7 @@ sub Done { } if (!$::isInstall) { my $new = fs::fstab_to_string($all_hds); - if ($new ne $all_hds->{current_fstab} && $in->ask_yesorno('', N("Do you want to save /etc/fstab modifications"), 1)) { + if ($new ne $all_hds->{current_fstab} && ($::auto || $in->ask_yesorno('', N("Do you want to save /etc/fstab modifications"), 1))) { $all_hds->{current_fstab} = $new; fs::write_fstab($all_hds); } |