diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-11-06 16:33:57 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-11-06 16:33:57 +0000 |
commit | 2f6812f51d43e7b76aef7764a298b05154d308e4 (patch) | |
tree | 2acb94432760e76c416594b4bb11b48eb3e7122a /perl-install/install2.pm | |
parent | 2fd889c2d9cc5fe117a81dd04c2166d267b5ef71 (diff) | |
download | drakx-2f6812f51d43e7b76aef7764a298b05154d308e4.tar drakx-2f6812f51d43e7b76aef7764a298b05154d308e4.tar.gz drakx-2f6812f51d43e7b76aef7764a298b05154d308e4.tar.bz2 drakx-2f6812f51d43e7b76aef7764a298b05154d308e4.tar.xz drakx-2f6812f51d43e7b76aef7764a298b05154d308e4.zip |
no_comment
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index d4a167bbc..09e4a17fd 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -44,8 +44,8 @@ my @installSteps = ( selectKeyboard => [ __("Choose your keyboard"), 1, 1, 1, "selectPath" ], partitionDisks => [ __("Setup filesystems"), 1, 0, 0, "selectPath" ], formatPartitions => [ __("Format partitions"), 1, -1, 0, "partitionDisks" ], - choosePackages => [ __("Choose packages to install"), 1, 1, 0, "selectPath" ], - doInstallStep => [ __("Install system"), 1, -1, 0 ], + choosePackages => [ __("Choose packages to install"), 1, 1, 1, "selectPath" ], + doInstallStep => [ __("Install system"), 1, -1, 0, ["formatPartitions", "selectPath"] ], miscellaneous => [ __("Miscellaneous"), 1, 1, 1 ], configureNetwork => [ __("Configure networking"), 1, 1, 1, "formatPartitions" ], configureTimezone => [ __("Configure timezone"), 1, 1, 0, "doInstallStep" ], @@ -87,11 +87,12 @@ my @install_classes = (__("beginner"), __("developer"), __("server"), __("expert #-##################################################################################### #- partition layout my %suggestedPartitions = ( - beginner => [ + beginner => 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 }, |