diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-01-22 16:29:02 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-01-22 16:29:02 +0000 |
commit | 5eabc0cdf002227c7b346e16639e86bd2bc802dd (patch) | |
tree | a35d1daf01735f15be97c445eca4414afe325a08 /perl-install/fsedit.pm | |
parent | 91d28380c3f7135fa5b7d64fa251b37c772994ae (diff) | |
download | drakx-5eabc0cdf002227c7b346e16639e86bd2bc802dd.tar drakx-5eabc0cdf002227c7b346e16639e86bd2bc802dd.tar.gz drakx-5eabc0cdf002227c7b346e16639e86bd2bc802dd.tar.bz2 drakx-5eabc0cdf002227c7b346e16639e86bd2bc802dd.tar.xz drakx-5eabc0cdf002227c7b346e16639e86bd2bc802dd.zip |
defaults to ext3 instead of ext2
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 91de6a0ff..5610adc42 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -19,20 +19,20 @@ use fs; %suggestions = ( __("simple") => [ - { mntpoint => "/", size => 300 << 11, type => 0x83, ratio => 5, maxsize =>3500 << 11 }, + { mntpoint => "/", size => 300 << 11, type =>0x483, ratio => 5, maxsize =>3500 << 11 }, { mntpoint => "swap", size => 64 << 11, type => 0x82, ratio => 1, maxsize => 250 << 11 }, - { mntpoint => "/home", size => 300 << 11, type => 0x83, ratio => 3 }, + { mntpoint => "/home", size => 300 << 11, type =>0x483, ratio => 3 }, ], 'with usr' => [ - { mntpoint => "/", size => 150 << 11, type => 0x83, ratio => 1, maxsize => 500 << 11 }, + { mntpoint => "/", size => 150 << 11, type =>0x483, ratio => 1, maxsize => 500 << 11 }, { mntpoint => "swap", size => 64 << 11, type => 0x82, ratio => 1, maxsize => 250 << 11 }, - { mntpoint => "/usr", size => 300 << 11, type => 0x83, ratio => 4, maxsize =>3000 << 11 }, - { mntpoint => "/home", size => 100 << 11, type => 0x83, ratio => 5 }, + { mntpoint => "/usr", size => 300 << 11, type =>0x483, ratio => 4, maxsize =>3000 << 11 }, + { mntpoint => "/home", size => 100 << 11, type =>0x483, ratio => 5 }, ], __("server") => [ - { mntpoint => "/", size => 150 << 11, type => 0x83, ratio => 1, maxsize => 250 << 11 }, + { mntpoint => "/", size => 150 << 11, type =>0x483, ratio => 1, maxsize => 250 << 11 }, { mntpoint => "swap", size => 64 << 11, type => 0x82, ratio => 2, maxsize => 400 << 11 }, - { mntpoint => "/usr", size => 300 << 11, type => 0x83, ratio => 3, maxsize =>3000 << 11 }, - { mntpoint => "/var", size => 100 << 11, type => 0x83, ratio => 4 }, - { mntpoint => "/home", size => 100 << 11, type => 0x83, ratio => 5 }, + { mntpoint => "/usr", size => 300 << 11, type =>0x483, ratio => 3, maxsize =>3000 << 11 }, + { mntpoint => "/var", size => 100 << 11, type =>0x483, ratio => 4 }, + { mntpoint => "/home", size => 100 << 11, type =>0x483, ratio => 5 }, ], ); foreach (values %suggestions) { |