diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-08-26 09:19:59 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-08-26 09:19:59 +0000 |
commit | b46749ee800acfa852c78df79da39d0bac07ec98 (patch) | |
tree | 712446011139b81effd4fc848bc7cc0c416bf107 /perl-install/fsedit.pm | |
parent | a3058a4fc98d96bea6629f14e87c9f6c83f8f60f (diff) | |
download | drakx-b46749ee800acfa852c78df79da39d0bac07ec98.tar drakx-b46749ee800acfa852c78df79da39d0bac07ec98.tar.gz drakx-b46749ee800acfa852c78df79da39d0bac07ec98.tar.bz2 drakx-b46749ee800acfa852c78df79da39d0bac07ec98.tar.xz drakx-b46749ee800acfa852c78df79da39d0bac07ec98.zip |
increase maxsize for / (partitioning with /usr) since it contains /tmp and /opt (as requested by Arnaud de Lorbeau)
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 616ce9e87..a46049d8a 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -23,7 +23,7 @@ use fs; { mntpoint => "swap", size => 64 << 11, type => 0x82, ratio => 1, maxsize => 250 << 11 }, { mntpoint => "/home", size => 300 << 11, type =>0x483, ratio => 3 }, ], __("with /usr") => [ - { mntpoint => "/", size => 150 << 11, type =>0x483, ratio => 1, maxsize => 500 << 11 }, + { mntpoint => "/", size => 150 << 11, type =>0x483, ratio => 1, maxsize =>1000 << 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 }, |