diff options
author | Pascal Terjan <pterjan@mandriva.org> | 2009-03-26 17:26:36 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mandriva.org> | 2009-03-26 17:26:36 +0000 |
commit | e2a966db31cddae2899c2d7d125e6346ad602fa7 (patch) | |
tree | 371d698bb542dc229ffe7ff14681c5e5a0c6f03c /perl-install | |
parent | d570e8e83775bbcb32f6d4a71cd5aadcc15b207d (diff) | |
download | drakx-e2a966db31cddae2899c2d7d125e6346ad602fa7.tar drakx-e2a966db31cddae2899c2d7d125e6346ad602fa7.tar.gz drakx-e2a966db31cddae2899c2d7d125e6346ad602fa7.tar.bz2 drakx-e2a966db31cddae2899c2d7d125e6346ad602fa7.tar.xz drakx-e2a966db31cddae2899c2d7d125e6346ad602fa7.zip |
improve previous tuning to please damien
Diffstat (limited to 'perl-install')
-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 92aaacf7b..b3acb649a 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -22,9 +22,9 @@ use fs; # min_hd_size: only suggest this partition if the hd size is bigger than that %suggestions = ( N_("simple") => [ - { mntpoint => "/", size => MB(300), fs_type => 'ext3', ratio => 20, maxsize => MB(12300) }, + { mntpoint => "/", size => MB(300), fs_type => 'ext3', ratio => 10, maxsize => MB(12300) }, { mntpoint => "swap", size => MB(128), fs_type => 'swap', ratio => 1, maxsize => MB(4000) }, - { mntpoint => "/home", size => MB(300), fs_type => 'ext3', ratio => 10, min_hd_size => MB(13000) }, + { mntpoint => "/home", size => MB(300), fs_type => 'ext3', ratio => 8, min_hd_size => MB(8000) }, ], N_("with /usr") => [ { mntpoint => "/", size => MB(250), fs_type => 'ext3', ratio => 1, maxsize => MB(8000) }, { mntpoint => "swap", size => MB(64), fs_type => 'swap', ratio => 1, maxsize => MB(4000) }, |