summaryrefslogtreecommitdiffstats
path: root/perl-install/diskdrake/interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-08-14 09:48:13 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-08-14 09:48:13 +0000
commit97b738004879841701f9d7f6e34b047c811809f4 (patch)
treee241dd52e9cf8b758bc971c05ea74c73d5a91a88 /perl-install/diskdrake/interactive.pm
parent1c37b9794d9b584318b2320b21cc2f8dd82aa48e (diff)
downloaddrakx-backup-do-not-use-97b738004879841701f9d7f6e34b047c811809f4.tar
drakx-backup-do-not-use-97b738004879841701f9d7f6e34b047c811809f4.tar.gz
drakx-backup-do-not-use-97b738004879841701f9d7f6e34b047c811809f4.tar.bz2
drakx-backup-do-not-use-97b738004879841701f9d7f6e34b047c811809f4.tar.xz
drakx-backup-do-not-use-97b738004879841701f9d7f6e34b047c811809f4.zip
- fix handling relatime vs noatime
(esp. relatime is not the opposite of atime, noatime is) - fix titypo: norelatime doesn't exist
Diffstat (limited to 'perl-install/diskdrake/interactive.pm')
-rw-r--r--perl-install/diskdrake/interactive.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm
index acca8f01e..aac735029 100644
--- a/perl-install/diskdrake/interactive.pm
+++ b/perl-install/diskdrake/interactive.pm
@@ -960,6 +960,9 @@ sub Options {
# we don't want both user and users
user => sub { $options->{users} = 0; $options->{$_} = $options->{user} foreach @$user_implies },
users => sub { $options->{user} = 0; $options->{$_} = $options->{users} foreach @$user_implies },
+ # we don't want both relatime and noatime
+ relatime => sub { $options->{noatime} = 0 },
+ noatime => sub { $options->{relatime} = 0 },
);