diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-09-24 09:15:26 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-09-24 09:15:26 +0000 |
commit | 12726a7dc456b2c0d3d24958636b17da4a3dc271 (patch) | |
tree | c97fdc1e641155f15a54f19ef0779e117c44dab7 /perl-install | |
parent | 47784c634123f611b448ac45f83dbf9abccd3aca (diff) | |
download | drakx-12726a7dc456b2c0d3d24958636b17da4a3dc271.tar drakx-12726a7dc456b2c0d3d24958636b17da4a3dc271.tar.gz drakx-12726a7dc456b2c0d3d24958636b17da4a3dc271.tar.bz2 drakx-12726a7dc456b2c0d3d24958636b17da4a3dc271.tar.xz drakx-12726a7dc456b2c0d3d24958636b17da4a3dc271.zip |
increase the max size of the swap
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fsedit.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 066de15ec..c3d46d332 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -20,16 +20,16 @@ use fs; %suggestions = ( N_("simple") => [ { mntpoint => "/", size => 300 << 11, fs_type => 'ext3', ratio => 5, maxsize => 6000 << 11 }, - { mntpoint => "swap", size => 64 << 11, fs_type => 'swap', ratio => 1, maxsize => 500 << 11 }, + { mntpoint => "swap", size => 64 << 11, fs_type => 'swap', ratio => 1, maxsize => 1100 << 11 }, { mntpoint => "/home", size => 300 << 11, fs_type => 'ext3', ratio => 3 }, ], N_("with /usr") => [ { mntpoint => "/", size => 250 << 11, fs_type => 'ext3', ratio => 1, maxsize => 2000 << 11 }, - { mntpoint => "swap", size => 64 << 11, fs_type => 'swap', ratio => 1, maxsize => 500 << 11 }, + { mntpoint => "swap", size => 64 << 11, fs_type => 'swap', ratio => 1, maxsize => 1100 << 11 }, { mntpoint => "/usr", size => 300 << 11, fs_type => 'ext3', ratio => 4, maxsize => 4000 << 11 }, { mntpoint => "/home", size => 100 << 11, fs_type => 'ext3', ratio => 3 }, ], N_("server") => [ { mntpoint => "/", size => 150 << 11, fs_type => 'ext3', ratio => 1, maxsize => 800 << 11 }, - { mntpoint => "swap", size => 64 << 11, fs_type => 'swap', ratio => 2, maxsize => 800 << 11 }, + { mntpoint => "swap", size => 64 << 11, fs_type => 'swap', ratio => 2, maxsize => 1600 << 11 }, { mntpoint => "/usr", size => 300 << 11, fs_type => 'ext3', ratio => 4, maxsize => 4000 << 11 }, { mntpoint => "/var", size => 200 << 11, fs_type => 'ext3', ratio => 3 }, { mntpoint => "/home", size => 150 << 11, fs_type => 'ext3', ratio => 3 }, |