diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-11-07 11:52:51 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-11-07 11:52:51 +0000 |
commit | e9d5cd96b2054cad8cca21bc1e7c10e4f4e135ed (patch) | |
tree | 6d1b334d8a1cd664289f674aa537be6d4344158f /perl-install/install2.pm | |
parent | 96510efce15225384a474e81ef2ea91d1ae3a4ee (diff) | |
download | drakx-e9d5cd96b2054cad8cca21bc1e7c10e4f4e135ed.tar drakx-e9d5cd96b2054cad8cca21bc1e7c10e4f4e135ed.tar.gz drakx-e9d5cd96b2054cad8cca21bc1e7c10e4f4e135ed.tar.bz2 drakx-e9d5cd96b2054cad8cca21bc1e7c10e4f4e135ed.tar.xz drakx-e9d5cd96b2054cad8cca21bc1e7c10e4f4e135ed.zip |
no_comment
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 406fe81d6..bcb98cb47 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -1,3 +1,4 @@ + package install2; use diagnostics; @@ -87,12 +88,11 @@ my @install_classes = (__("beginner"), __("developer"), __("server"), __("expert #-##################################################################################### #- partition layout my %suggestedPartitions = ( - beginner => my $b = [ + normal => my $b = [ { mntpoint => "/", size => 700 << 11, type => 0x83 }, { mntpoint => "swap", size => 128 << 11, type => 0x82 }, { mntpoint => "/home", size => 300 << 11, type => 0x83 }, ], - normal => $b, developer => [ { mntpoint => "/boot", size => 16 << 11, type => 0x83 }, { mntpoint => "swap", size => 128 << 11, type => 0x82 }, @@ -108,9 +108,6 @@ my %suggestedPartitions = ( { mntpoint => "/var", size => 600 << 11, type => 0x83 }, { mntpoint => "/home", size => 500 << 11, type => 0x83 }, ], - expert => [ - { mntpoint => "/", size => 200 << 11, type => 0x83 }, - ], ); #-####################################################################################### |