summaryrefslogtreecommitdiffstats
path: root/perl-install/fsedit.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-02-18 11:01:02 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-02-18 11:01:02 +0000
commitc47007af0657a86c05c9940a9e3a223ad21f3987 (patch)
tree6f0558ae1565a222b00385f6dd3a118294c060bc /perl-install/fsedit.pm
parentc98d567516bb15f8c23f91c89aa59f6444225df7 (diff)
downloaddrakx-backup-do-not-use-c47007af0657a86c05c9940a9e3a223ad21f3987.tar
drakx-backup-do-not-use-c47007af0657a86c05c9940a9e3a223ad21f3987.tar.gz
drakx-backup-do-not-use-c47007af0657a86c05c9940a9e3a223ad21f3987.tar.bz2
drakx-backup-do-not-use-c47007af0657a86c05c9940a9e3a223ad21f3987.tar.xz
drakx-backup-do-not-use-c47007af0657a86c05c9940a9e3a223ad21f3987.zip
better default partitioning
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r--perl-install/fsedit.pm14
1 files changed, 7 insertions, 7 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm
index 2b702b3ea..620dba807 100644
--- a/perl-install/fsedit.pm
+++ b/perl-install/fsedit.pm
@@ -19,21 +19,21 @@ use fs;
%suggestions = (
N_("simple") => [
- { mntpoint => "/", size => 400 << 11, type =>0x483, ratio => 5, maxsize => 6000 << 11 },
- { mntpoint => "swap", size => 64 << 11, type => 0x82, ratio => 1, maxsize => 250 << 11 },
+ { mntpoint => "/", size => 300 << 11, type =>0x483, ratio => 5, maxsize => 6000 << 11 },
+ { mntpoint => "swap", size => 64 << 11, type => 0x82, ratio => 1, maxsize => 500 << 11 },
{ mntpoint => "/home", size => 300 << 11, type =>0x483, ratio => 3 },
], N_("with /usr") => [
{ mntpoint => "/", size => 250 << 11, type =>0x483, ratio => 1, maxsize => 2000 << 11 },
- { mntpoint => "swap", size => 64 << 11, type => 0x82, ratio => 1, maxsize => 250 << 11 },
+ { mntpoint => "swap", size => 64 << 11, type => 0x82, ratio => 1, maxsize => 500 << 11 },
{ mntpoint => "/usr", size => 300 << 11, type =>0x483, ratio => 4, maxsize => 4000 << 11 },
{ mntpoint => "/home", size => 100 << 11, type =>0x483, ratio => 3 },
], N_("server") => [
- { mntpoint => "/", size => 150 << 11, type =>0x483, ratio => 1, maxsize => 250 << 11 },
- { mntpoint => "swap", size => 64 << 11, type => 0x82, ratio => 2, maxsize => 400 << 11 },
+ { mntpoint => "/", size => 150 << 11, type =>0x483, ratio => 1, maxsize => 800 << 11 },
+ { mntpoint => "swap", size => 64 << 11, type => 0x82, ratio => 2, maxsize => 800 << 11 },
{ mntpoint => "/usr", size => 300 << 11, type =>0x483, ratio => 4, maxsize => 4000 << 11 },
- { mntpoint => "/var", size => 150 << 11, type =>0x483, ratio => 3 },
+ { mntpoint => "/var", size => 200 << 11, type =>0x483, ratio => 3 },
{ mntpoint => "/home", size => 150 << 11, type =>0x483, ratio => 3 },
- { mntpoint => "/tmp", size => 150 << 11, type =>0x483, ratio => 2, maxsize => 500 << 11 },
+ { mntpoint => "/tmp", size => 150 << 11, type =>0x483, ratio => 2, maxsize => 1000 << 11 },
],
);
foreach (values %suggestions) {