diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-10-19 17:09:15 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-10-19 17:09:15 +0000 |
commit | 7baeb9edffaca2fae9a1533e57a00ee5135fba98 (patch) | |
tree | 3a778ef5b6976b661a22676632b904e8baab9b0e /perl-install | |
parent | 90667e16892a9331c724506a24b73ee624b3c690 (diff) | |
download | drakx-7baeb9edffaca2fae9a1533e57a00ee5135fba98.tar drakx-7baeb9edffaca2fae9a1533e57a00ee5135fba98.tar.gz drakx-7baeb9edffaca2fae9a1533e57a00ee5135fba98.tar.bz2 drakx-7baeb9edffaca2fae9a1533e57a00ee5135fba98.tar.xz drakx-7baeb9edffaca2fae9a1533e57a00ee5135fba98.zip |
increase "/" maxsize (bugzilla #19353)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fsedit.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 7c968e915..b922bdd6d 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -21,21 +21,21 @@ use fs; %suggestions = ( N_("simple") => [ - { mntpoint => "/", size => 300 << 11, fs_type => 'ext3', ratio => 5, maxsize => 6000 << 11 }, + { mntpoint => "/", size => 300 << 11, fs_type => 'ext3', ratio => 5, maxsize => 8000 << 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 => 1100 << 11 }, - { mntpoint => "/usr", size => 300 << 11, fs_type => 'ext3', ratio => 4, maxsize => 6000 << 11 }, + { mntpoint => "/usr", size => 300 << 11, fs_type => 'ext3', ratio => 4, maxsize => 8000 << 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 => "/", size => 150 << 11, fs_type => 'ext3', ratio => 1, maxsize => 1600 << 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 => 6000 << 11 }, + { mntpoint => "/usr", size => 300 << 11, fs_type => 'ext3', ratio => 4, maxsize => 8000 << 11 }, { mntpoint => "/var", size => 200 << 11, fs_type => 'ext3', ratio => 3 }, { mntpoint => "/home", size => 150 << 11, fs_type => 'ext3', ratio => 3 }, - { mntpoint => "/tmp", size => 150 << 11, fs_type => 'ext3', ratio => 2, maxsize => 1000 << 11 }, + { mntpoint => "/tmp", size => 150 << 11, fs_type => 'ext3', ratio => 2, maxsize => 2000 << 11 }, ], ); foreach (values %suggestions) { |