diff options
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/steps_list.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index fa35f626f..9669e2655 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,4 @@ +- kill security level step (only reachable from summary now) - summary screen: o reorder steps according to specs o render titles in bold diff --git a/perl-install/install/steps_list.pm b/perl-install/install/steps_list.pm index c298233be..75bd15cd7 100644 --- a/perl-install/install/steps_list.pm +++ b/perl-install/install/steps_list.pm @@ -19,7 +19,7 @@ use common; setupSCSI => [ N_("_: Keep these entry short\nHard drive detection"), 1, 0, '1', '' ], selectInstallClass => [ N_("_: Keep these entry short\nInstallation class"), 1, 1, '1', '' ], selectKeyboard => [ N_("_: Keep these entry short\nKeyboard"), 1, 1, '1' ], - miscellaneous => [ N_("_: Keep these entry short\nSecurity"), 1, 1, '', '' ], + #miscellaneous => [ N_("_: Keep these entry short\nSecurity"), 1, 1, '', '' ], doPartitionDisks => [ N_("_: Keep these entry short\nPartitioning"), 1, 0, '', "selectInstallClass" ], formatPartitions => [ N_("_: Keep these entry short\nFormatting"), 1, -1, '1', "doPartitionDisks" ], choosePackages => [ N_("_: Keep these entry short\nChoosing packages"), 1, -2, '1', "formatPartitions" ], |