diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-08-14 09:48:13 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-08-14 09:48:13 +0000 |
commit | 97b738004879841701f9d7f6e34b047c811809f4 (patch) | |
tree | e241dd52e9cf8b758bc971c05ea74c73d5a91a88 /perl-install/diskdrake/interactive.pm | |
parent | 1c37b9794d9b584318b2320b21cc2f8dd82aa48e (diff) | |
download | drakx-97b738004879841701f9d7f6e34b047c811809f4.tar drakx-97b738004879841701f9d7f6e34b047c811809f4.tar.gz drakx-97b738004879841701f9d7f6e34b047c811809f4.tar.bz2 drakx-97b738004879841701f9d7f6e34b047c811809f4.tar.xz drakx-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.pm | 3 |
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 }, ); |