diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-08-14 08:44:12 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-08-14 08:44:12 +0000 |
commit | 6610195f31d5c9081726037064843095fc9e09cc (patch) | |
tree | e3f1c7d63c426317381a687204da907a8dc93554 /perl-install/fs/mount_options.pm | |
parent | b14683fda0b5a08584419b1e55bede36da370111 (diff) | |
download | drakx-6610195f31d5c9081726037064843095fc9e09cc.tar drakx-6610195f31d5c9081726037064843095fc9e09cc.tar.gz drakx-6610195f31d5c9081726037064843095fc9e09cc.tar.bz2 drakx-6610195f31d5c9081726037064843095fc9e09cc.tar.xz drakx-6610195f31d5c9081726037064843095fc9e09cc.zip |
handle 'relatime' mount option
Diffstat (limited to 'perl-install/fs/mount_options.pm')
-rw-r--r-- | perl-install/fs/mount_options.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/mount_options.pm b/perl-install/fs/mount_options.pm index 72ffa9cae..0cc956b74 100644 --- a/perl-install/fs/mount_options.pm +++ b/perl-install/fs/mount_options.pm @@ -12,7 +12,7 @@ sub list() { my %non_defaults = ( sync => 'async', noatime => 'atime', noauto => 'auto', ro => 'rw', user => 'nouser', nodev => 'dev', noexec => 'exec', nosuid => 'suid', - user_xattr => 'nouser_xattr', + user_xattr => 'nouser_xattr', relatime => 'atime', ); my @user_implies = qw(noexec nodev nosuid); \%non_defaults, \@user_implies; |