diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-08-06 11:51:30 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-08-06 11:51:30 +0000 |
commit | 769abbc0792c2e2daef05e22e4cfd6837eff9250 (patch) | |
tree | fdaa2c393ebbb5bac2396bceeadfc8ef94cb8c13 /perl-install | |
parent | 4f9471223a30a8942bb12955b61842300c8dd2c7 (diff) | |
download | drakx-769abbc0792c2e2daef05e22e4cfd6837eff9250.tar drakx-769abbc0792c2e2daef05e22e4cfd6837eff9250.tar.gz drakx-769abbc0792c2e2daef05e22e4cfd6837eff9250.tar.bz2 drakx-769abbc0792c2e2daef05e22e4cfd6837eff9250.tar.xz drakx-769abbc0792c2e2daef05e22e4cfd6837eff9250.zip |
- add /tmp in %suggestions for server partitioning
- tweak some ratio's in %suggestions
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fsedit.pm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 40edec59d..a256fcb2c 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -26,13 +26,14 @@ use fs; { mntpoint => "/", size => 150 << 11, type =>0x483, ratio => 1, maxsize => 500 << 11 }, { mntpoint => "swap", size => 64 << 11, type => 0x82, ratio => 1, maxsize => 250 << 11 }, { mntpoint => "/usr", size => 300 << 11, type =>0x483, ratio => 4, maxsize =>3000 << 11 }, - { mntpoint => "/home", size => 100 << 11, type =>0x483, ratio => 5 }, + { mntpoint => "/home", size => 100 << 11, type =>0x483, ratio => 3 }, ], __("server") => [ { mntpoint => "/", size => 150 << 11, type =>0x483, ratio => 1, maxsize => 250 << 11 }, { mntpoint => "swap", size => 64 << 11, type => 0x82, ratio => 2, maxsize => 400 << 11 }, - { mntpoint => "/usr", size => 300 << 11, type =>0x483, ratio => 3, maxsize =>3000 << 11 }, - { mntpoint => "/var", size => 100 << 11, type =>0x483, ratio => 4 }, - { mntpoint => "/home", size => 100 << 11, type =>0x483, ratio => 5 }, + { mntpoint => "/usr", size => 300 << 11, type =>0x483, ratio => 4, maxsize =>3000 << 11 }, + { mntpoint => "/var", size => 150 << 11, type =>0x483, ratio => 3 }, + { mntpoint => "/home", size => 150 << 11, type =>0x483, ratio => 3 }, + { mntpoint => "/tmp", size => 150 << 11, type =>0x483, ratio => 2, maxsize => 500 << 11 }, ], ); foreach (values %suggestions) { |