diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-17 18:09:53 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-17 18:09:53 +0000 |
commit | e87fb5722865ed81135c44c45f24874aa98b0018 (patch) | |
tree | 9dc968114dfd5d84fe0fee82c6ce39cf7b8bc7ea | |
parent | fdf6fe42b5d1a59326689d141d6b7988d6eafe02 (diff) | |
download | drakx-e87fb5722865ed81135c44c45f24874aa98b0018.tar drakx-e87fb5722865ed81135c44c45f24874aa98b0018.tar.gz drakx-e87fb5722865ed81135c44c45f24874aa98b0018.tar.bz2 drakx-e87fb5722865ed81135c44c45f24874aa98b0018.tar.xz drakx-e87fb5722865ed81135c44c45f24874aa98b0018.zip |
don't show "Choose packages to install" nor "Configure services"
(was still there in expert)
-rw-r--r-- | perl-install/steps.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/steps.pm b/perl-install/steps.pm index e33df20a9..0d09dca21 100644 --- a/perl-install/steps.pm +++ b/perl-install/steps.pm @@ -20,7 +20,7 @@ use common; miscellaneous => [ N_("Security"), 1, 1, '', '' ], doPartitionDisks => [ N_("Partitioning"), 1, 0, '', "selectInstallClass" ], formatPartitions => [ N_("Format partitions"), 1, -1, '1', "doPartitionDisks" ], - choosePackages => [ N_("Choose packages to install"), 1, -2, '!$::expert', "formatPartitions" ], + choosePackages => [ N_("Choose packages to install"), 1, -2, '', "formatPartitions" ], installPackages => [ N_("Install system"), 1, -1, '', ["formatPartitions", "selectInstallClass"] ], setRootPassword => [ N_("Set root password"), 1, 1, '', "installPackages" ], addUser => [ N_("Add a user"), 1, 1, '', "installPackages" ], @@ -28,7 +28,7 @@ use common; setupBootloader => [ N_("Install bootloader"), 1, 0, '', "installPackages" ], configureX => [ N_("Configure X"), 1, 1, '1', ["formatPartitions", "setupBootloader"] ], summary => [ N_("Summary"), 1, 0, '', "installPackages" ], - configureServices => [ N_("Configure services"), 1, 1, '!$::expert', "installPackages" ], + configureServices => [ N_("Configure services"), 1, 1, '', "installPackages" ], installUpdates => [ N_("Install system updates"), 1, 1, '', ["installPackages", "configureNetwork", "summary"] ], exitInstall => [ N_("Exit install"), 0, 0, '', '' ], ); |