summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugeni Dodonov <eugeni@mandriva.org>2011-02-23 21:06:32 +0000
committerEugeni Dodonov <eugeni@mandriva.org>2011-02-23 21:06:32 +0000
commitd1ce3de2d6eb57c95401aeb6dca1fda7d1d15916 (patch)
tree3eda918d2c99550f15e694561fb5f6999dd74c8f
parente1f958ab836e6a1031a782a14ce433c1eb19939b (diff)
downloaddrakx-backup-do-not-use-d1ce3de2d6eb57c95401aeb6dca1fda7d1d15916.tar
drakx-backup-do-not-use-d1ce3de2d6eb57c95401aeb6dca1fda7d1d15916.tar.gz
drakx-backup-do-not-use-d1ce3de2d6eb57c95401aeb6dca1fda7d1d15916.tar.bz2
drakx-backup-do-not-use-d1ce3de2d6eb57c95401aeb6dca1fda7d1d15916.tar.xz
drakx-backup-do-not-use-d1ce3de2d6eb57c95401aeb6dca1fda7d1d15916.zip
increase minimum hd size to suggest /home
-rw-r--r--perl-install/NEWS2
-rw-r--r--perl-install/fsedit.pm6
2 files changed, 5 insertions, 3 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 96d1fde2d..474ccbabb 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,5 @@
+- increase default disk size to suggest /home partition
+
Version 13.41 - 22 February 2011
- allow finish-install to remove unused packages
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm
index 680b7b8fb..cc3234a8b 100644
--- a/perl-install/fsedit.pm
+++ b/perl-install/fsedit.pm
@@ -24,18 +24,18 @@ use fs;
N_("simple") => [
{ mntpoint => "/", size => MB(300), fs_type => defaultFS(), 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 => defaultFS(), ratio => 8, min_hd_size => MB(8000) },
+ { mntpoint => "/home", size => MB(300), fs_type => defaultFS(), ratio => 8, min_hd_size => MB(12000) },
], N_("with /usr") => [
{ mntpoint => "/", size => MB(250), fs_type => defaultFS(), ratio => 1, maxsize => MB(8000) },
{ mntpoint => "swap", size => MB(64), fs_type => 'swap', ratio => 1, maxsize => MB(4000) },
{ mntpoint => "/usr", size => MB(300), fs_type => defaultFS(), ratio => 4, maxsize => MB(8000) },
- { mntpoint => "/home", size => MB(100), fs_type => defaultFS(), ratio => 3, min_hd_size => MB(7000) },
+ { mntpoint => "/home", size => MB(100), fs_type => defaultFS(), ratio => 3, min_hd_size => MB(10000) },
], N_("server") => [
{ mntpoint => "/", size => MB(150), fs_type => defaultFS(), ratio => 1, maxsize => MB(8000) },
{ mntpoint => "swap", size => MB(64), fs_type => 'swap', ratio => 2, maxsize => MB(4000) },
{ mntpoint => "/usr", size => MB(300), fs_type => defaultFS(), ratio => 4, maxsize => MB(8000) },
{ mntpoint => "/var", size => MB(200), fs_type => defaultFS(), ratio => 3 },
- { mntpoint => "/home", size => MB(150), fs_type => defaultFS(), ratio => 3, min_hd_size => MB(7000) },
+ { mntpoint => "/home", size => MB(150), fs_type => defaultFS(), ratio => 3, min_hd_size => MB(10000) },
{ mntpoint => "/tmp", size => MB(150), fs_type => defaultFS(), ratio => 2, maxsize => MB(4000) },
],
);