diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-01-04 14:17:15 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-01-04 14:17:15 +0000 |
commit | f7bee8d26d4395332b6fdbf3722ae55c31e0238f (patch) | |
tree | 1ce4beb1715ca60f1fa22d45e5cc7b82d4aa3ad0 /perl-install/install2.pm | |
parent | a8d2318343b50494f5d458ef89474ee5287f5302 (diff) | |
download | drakx-f7bee8d26d4395332b6fdbf3722ae55c31e0238f.tar drakx-f7bee8d26d4395332b6fdbf3722ae55c31e0238f.tar.gz drakx-f7bee8d26d4395332b6fdbf3722ae55c31e0238f.tar.bz2 drakx-f7bee8d26d4395332b6fdbf3722ae55c31e0238f.tar.xz drakx-f7bee8d26d4395332b6fdbf3722ae55c31e0238f.zip |
no_comment
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 00aeb8fc2..2b6da107d 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -334,6 +334,12 @@ sub formatPartitions { mkdir "$o->{prefix}/$_", 0700 foreach qw(root); raid::prepare_prefixed($o->{raid}, $o->{prefix}); + + #-noatime option for ext2 fs on laptops (do not wake up the hd) + #- 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} = "noatime" foreach grep { isExt2($_) } @{$o->{fstab}}; } #------------------------------------------------------------------------------ |