summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/fsedit.pm7
1 files changed, 3 insertions, 4 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm
index 4d3c674ed..157683771 100644
--- a/perl-install/fsedit.pm
+++ b/perl-install/fsedit.pm
@@ -19,13 +19,12 @@ use fs;
%suggestions = (
__("simple") => [
- { mntpoint => "/", size => 300 << 11, type =>0x483, ratio => 5, maxsize =>5500 << 11 },
+ { mntpoint => "/", size => 300 << 11, type =>0x483, ratio => 5 },
{ mntpoint => "swap", size => 64 << 11, type => 0x82, ratio => 1, maxsize => 250 << 11 },
- { mntpoint => "/var", size => 300 << 11, type =>0x483, ratio => 3 },
], __("cluster server") => [
{ mntpoint => "/", size => 750 << 11, type =>0x483, ratio => 1, maxsize => 3500 << 11 },
{ mntpoint => "swap", size => 64 << 11, type => 0x82, ratio => 1, maxsize => 250 << 11 },
- { mntpoint => "/var/install", size => 1000 << 11, type =>0x483, ratio => 4, maxsize =>1200 << 11 },
+ { mntpoint => "/var/install", size => 1200 << 11, type =>0x483, ratio => 4, maxsize =>1600 << 11 },
{ mntpoint => "/var", size => 100 << 11, type =>0x483, ratio => 4 },
{ mntpoint => "/home", size => 100 << 11, type =>0x483, ratio => 5 },
],
@@ -37,7 +36,7 @@ foreach (values %suggestions) {
}
my @suggestions_mntpoints = (
- "/var/ftp", "/var/www", "/boot", "/var/install",
+ "/var/ftp", "/var/www", "/boot", "/var/install", "/",
arch() =~ /sparc/ ? "/mnt/sunos" : arch() =~ /ppc/ ? "/mnt/macos" : "/mnt/windows",
);