diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-02-17 18:47:49 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-02-17 18:47:49 +0000 |
commit | 90e9612574f7b3769ffec0c6803e59d948767dbd (patch) | |
tree | 48909bc90bb39a7a35bb2d312d5cb330d9c17026 | |
parent | e216d45f8410cb6bdd0e0c6c472136227f6193f2 (diff) | |
download | drakx-90e9612574f7b3769ffec0c6803e59d948767dbd.tar drakx-90e9612574f7b3769ffec0c6803e59d948767dbd.tar.gz drakx-90e9612574f7b3769ffec0c6803e59d948767dbd.tar.bz2 drakx-90e9612574f7b3769ffec0c6803e59d948767dbd.tar.xz drakx-90e9612574f7b3769ffec0c6803e59d948767dbd.zip |
fix pixel's commit: never display choosePackages and
configureServices, instead of always
-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 0d09dca21..f86521669 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, '', "formatPartitions" ], + choosePackages => [ N_("Choose packages to install"), 1, -2, '1', "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, '', "installPackages" ], + configureServices => [ N_("Configure services"), 1, 1, '1', "installPackages" ], installUpdates => [ N_("Install system updates"), 1, 1, '', ["installPackages", "configureNetwork", "summary"] ], exitInstall => [ N_("Exit install"), 0, 0, '', '' ], ); |