summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-09-19 15:37:27 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-09-19 15:37:27 +0000
commita3943c39fba4ed4f67596e5d4dcd83f85bdf7059 (patch)
tree5cd9a62d0341d61bd9ba3e08f5659b40229efb1f
parentbb8a234c85ba1e26e38fe217fa1729ed85595a3f (diff)
downloaddrakx-a3943c39fba4ed4f67596e5d4dcd83f85bdf7059.tar
drakx-a3943c39fba4ed4f67596e5d4dcd83f85bdf7059.tar.gz
drakx-a3943c39fba4ed4f67596e5d4dcd83f85bdf7059.tar.bz2
drakx-a3943c39fba4ed4f67596e5d4dcd83f85bdf7059.tar.xz
drakx-a3943c39fba4ed4f67596e5d4dcd83f85bdf7059.zip
increase /usr max size
-rw-r--r--perl-install/fsedit.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm
index cd9b72f76..fd2119945 100644
--- a/perl-install/fsedit.pm
+++ b/perl-install/fsedit.pm
@@ -27,12 +27,12 @@ use fs;
], N_("with /usr") => [
{ mntpoint => "/", size => 250 << 11, fs_type => 'ext3', ratio => 1, maxsize => 2000 << 11 },
{ mntpoint => "swap", size => 64 << 11, fs_type => 'swap', ratio => 1, maxsize => 1100 << 11 },
- { mntpoint => "/usr", size => 300 << 11, fs_type => 'ext3', ratio => 4, maxsize => 4000 << 11 },
+ { mntpoint => "/usr", size => 300 << 11, fs_type => 'ext3', ratio => 4, maxsize => 6000 << 11 },
{ mntpoint => "/home", size => 100 << 11, fs_type => 'ext3', ratio => 3 },
], N_("server") => [
{ mntpoint => "/", size => 150 << 11, fs_type => 'ext3', ratio => 1, maxsize => 800 << 11 },
{ mntpoint => "swap", size => 64 << 11, fs_type => 'swap', ratio => 2, maxsize => 1600 << 11 },
- { mntpoint => "/usr", size => 300 << 11, fs_type => 'ext3', ratio => 4, maxsize => 4000 << 11 },
+ { mntpoint => "/usr", size => 300 << 11, fs_type => 'ext3', ratio => 4, maxsize => 6000 << 11 },
{ mntpoint => "/var", size => 200 << 11, fs_type => 'ext3', ratio => 3 },
{ mntpoint => "/home", size => 150 << 11, fs_type => 'ext3', ratio => 3 },
{ mntpoint => "/tmp", size => 150 << 11, fs_type => 'ext3', ratio => 2, maxsize => 1000 << 11 },