diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-08-06 10:03:30 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-08-06 10:03:30 +0000 |
commit | 41ac3682f799becfaeb708aa329f4dd0864ccdaa (patch) | |
tree | 1581215e4934f716758104d520ad37b931db6a6a | |
parent | 4bacdf3ae1d1b42695a29b7f74163c9ed590d365 (diff) | |
download | drakx-41ac3682f799becfaeb708aa329f4dd0864ccdaa.tar drakx-41ac3682f799becfaeb708aa329f4dd0864ccdaa.tar.gz drakx-41ac3682f799becfaeb708aa329f4dd0864ccdaa.tar.bz2 drakx-41ac3682f799becfaeb708aa329f4dd0864ccdaa.tar.xz drakx-41ac3682f799becfaeb708aa329f4dd0864ccdaa.zip |
(help) add support for "nodiratime" mount option
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/fs/mount_options.pm | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 36b68ce1e..105111366 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- add support for "nodiratime" mount option + Version 10.4.159 - 06 August 2007, by Thierry Vignaud - diskdrake: diff --git a/perl-install/fs/mount_options.pm b/perl-install/fs/mount_options.pm index 2cd184814..72ffa9cae 100644 --- a/perl-install/fs/mount_options.pm +++ b/perl-install/fs/mount_options.pm @@ -117,6 +117,9 @@ sub help() { 'noatime' => N("Do not update inode access times on this file system (e.g, for faster access on the news spool to speed up news servers)."), + 'nodiratime' => N("Do not update directory inode access times on this filesystem +(e.g, for faster access on the news spool to speed up news servers)."), + 'noauto' => N("Can only be mounted explicitly (i.e., the -a option will not cause the file system to be mounted)."), |