diff options
author | Pascal Terjan <pterjan@mandriva.org> | 2009-03-26 13:22:32 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mandriva.org> | 2009-03-26 13:22:32 +0000 |
commit | d4272f295498a09395c9b00964489f346d89f7ea (patch) | |
tree | bcb5998f0bd7be49c1a14791f15a2e82270ce1a0 | |
parent | c24b6fa43e011ffe18a057e6dc2385fefffe965d (diff) | |
download | drakx-d4272f295498a09395c9b00964489f346d89f7ea.tar drakx-d4272f295498a09395c9b00964489f346d89f7ea.tar.gz drakx-d4272f295498a09395c9b00964489f346d89f7ea.tar.bz2 drakx-d4272f295498a09395c9b00964489f346d89f7ea.tar.xz drakx-d4272f295498a09395c9b00964489f346d89f7ea.zip |
adjust partition size suggestion
-rw-r--r-- | perl-install/NEWS | 4 | ||||
-rw-r--r-- | perl-install/fsedit.pm | 5 | ||||
-rw-r--r-- | perl-install/install/NEWS | 4 |
3 files changed, 11 insertions, 2 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 0cd32a804..85c50b0d7 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,5 +1,9 @@ - changed X server restart routing not to rely on ctrl-alt-del (#49059). - fixed a typo in list_modules for virtio modules +- diskdrake: + o adjust partition size suggestion + - increase / size to 12GB (instead of 8) + - create separate /home starting at 13GB drives (instead of 7) Version 12.18 - 25 March 2009 diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 25d6ce9e5..92aaacf7b 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -19,11 +19,12 @@ use devices; use log; use fs; +# min_hd_size: only suggest this partition if the hd size is bigger than that %suggestions = ( N_("simple") => [ - { mntpoint => "/", size => MB(300), fs_type => 'ext3', ratio => 20, maxsize => MB(8000) }, + { mntpoint => "/", size => MB(300), fs_type => 'ext3', ratio => 20, maxsize => MB(12300) }, { mntpoint => "swap", size => MB(128), fs_type => 'swap', ratio => 1, maxsize => MB(4000) }, - { mntpoint => "/home", size => MB(300), fs_type => 'ext3', ratio => 3, min_hd_size => MB(7000) }, + { mntpoint => "/home", size => MB(300), fs_type => 'ext3', ratio => 10, min_hd_size => MB(13000) }, ], N_("with /usr") => [ { mntpoint => "/", size => MB(250), fs_type => 'ext3', ratio => 1, maxsize => MB(8000) }, { mntpoint => "swap", size => MB(64), fs_type => 'swap', ratio => 1, maxsize => MB(4000) }, diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 5cf56194f..b10f5b8bb 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,7 @@ +- adjust partition size suggestion + o increase / size to 12GB (instead of 8) + o create separate /home starting at 13GB drives (instead of 7) + Version 12.18 - 24 March 2009 - log packages' scripts output (perl-URPM/urpmi aren't fixed regarding |