summaryrefslogtreecommitdiffstats
path: root/perl-install/fs/mount_options.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-08-14 09:20:11 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-08-14 09:20:11 +0000
commit1c37b9794d9b584318b2320b21cc2f8dd82aa48e (patch)
treef9f9946068d9865f53d25472ccb5d60bad35a927 /perl-install/fs/mount_options.pm
parentecda8e2422b223d015dddff46cae64ef08d0ee28 (diff)
downloaddrakx-backup-do-not-use-1c37b9794d9b584318b2320b21cc2f8dd82aa48e.tar
drakx-backup-do-not-use-1c37b9794d9b584318b2320b21cc2f8dd82aa48e.tar.gz
drakx-backup-do-not-use-1c37b9794d9b584318b2320b21cc2f8dd82aa48e.tar.bz2
drakx-backup-do-not-use-1c37b9794d9b584318b2320b21cc2f8dd82aa48e.tar.xz
drakx-backup-do-not-use-1c37b9794d9b584318b2320b21cc2f8dd82aa48e.zip
partially revert previous (titi) commit: we do want noatime on laptops, since
it's not a performance issue, but really a way to not wake up the hd
Diffstat (limited to 'perl-install/fs/mount_options.pm')
-rw-r--r--perl-install/fs/mount_options.pm8
1 files changed, 5 insertions, 3 deletions
diff --git a/perl-install/fs/mount_options.pm b/perl-install/fs/mount_options.pm
index 3e692cea5..21e042acd 100644
--- a/perl-install/fs/mount_options.pm
+++ b/perl-install/fs/mount_options.pm
@@ -198,12 +198,14 @@ sub set_default {
$options->{flush} = 1;
}
- #- relatime (wake up the hd less often / better performances)
+ if (isTrueFS($part)) {
+ #- noatime on laptops (do not wake up the hd)
+ #- otherwise relatime (wake up the hd less often / better performances)
#- Do not update inode access times on this
#- file system (e.g, for faster access on the
#- news spool to speed up news servers).
- $options->{relatime} = isTrueFS($part);
-
+ $options->{detect_devices::isLaptop() ? 'noatime': 'relatime'} = 1;
+ }
if ($part->{fs_type} eq 'nfs') {
put_in_hash($options, {
nosuid => 1, 'rsize=8192,wsize=8192' => 1, soft => 1,