diff options
author | Francois Pons <fpons@mandriva.com> | 2003-02-17 16:41:36 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-02-17 16:41:36 +0000 |
commit | be2ee6a58b33f980dd5b0786bb2e0709ba9d700e (patch) | |
tree | 4435828fc0e5f946d8c5e5d7f2aa26b5d8f9cdbc | |
parent | f01a2650aeaed517e5d9509032abf63c3e138d49 (diff) | |
download | drakx-be2ee6a58b33f980dd5b0786bb2e0709ba9d700e.tar drakx-be2ee6a58b33f980dd5b0786bb2e0709ba9d700e.tar.gz drakx-be2ee6a58b33f980dd5b0786bb2e0709ba9d700e.tar.bz2 drakx-be2ee6a58b33f980dd5b0786bb2e0709ba9d700e.tar.xz drakx-be2ee6a58b33f980dd5b0786bb2e0709ba9d700e.zip |
increased /var container for suggestion (simple or with /usr).
-rw-r--r-- | perl-install/fsedit.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index fb52c0db0..1f5bc36b4 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -19,11 +19,11 @@ use fs; %suggestions = ( N_("simple") => [ - { mntpoint => "/", size => 300 << 11, type =>0x483, ratio => 5, maxsize => 5500 << 11 }, + { mntpoint => "/", size => 300 << 11, type =>0x483, ratio => 5, maxsize => 6000 << 11 }, { mntpoint => "swap", size => 64 << 11, type => 0x82, ratio => 1, maxsize => 250 << 11 }, { mntpoint => "/home", size => 300 << 11, type =>0x483, ratio => 3 }, ], N_("with /usr") => [ - { mntpoint => "/", size => 150 << 11, type =>0x483, ratio => 1, maxsize => 1000 << 11 }, + { mntpoint => "/", size => 150 << 11, type =>0x483, ratio => 1, maxsize => 2000 << 11 }, { mntpoint => "swap", size => 64 << 11, type => 0x82, ratio => 1, maxsize => 250 << 11 }, { mntpoint => "/usr", size => 300 << 11, type =>0x483, ratio => 4, maxsize => 4000 << 11 }, { mntpoint => "/home", size => 100 << 11, type =>0x483, ratio => 3 }, |