summaryrefslogtreecommitdiffstats
path: root/perl-install/install2.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-02-07 21:50:52 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-02-07 21:50:52 +0000
commited1db3884ceffd84d82021c3f5c2c0c7be73a796 (patch)
tree71c8604aa8a7b1c979d11816c1d264f349858222 /perl-install/install2.pm
parentdc423de69c436d3ca0db892687581ce036368ae6 (diff)
downloaddrakx-backup-do-not-use-ed1db3884ceffd84d82021c3f5c2c0c7be73a796.tar
drakx-backup-do-not-use-ed1db3884ceffd84d82021c3f5c2c0c7be73a796.tar.gz
drakx-backup-do-not-use-ed1db3884ceffd84d82021c3f5c2c0c7be73a796.tar.bz2
drakx-backup-do-not-use-ed1db3884ceffd84d82021c3f5c2c0c7be73a796.tar.xz
drakx-backup-do-not-use-ed1db3884ceffd84d82021c3f5c2c0c7be73a796.zip
create and use miscellaneousAfter (so that SECURE_LEVEL is set *after* asking)
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r--perl-install/install2.pm11
1 files changed, 1 insertions, 10 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm
index 9820aa8bb..392a502f3 100644
--- a/perl-install/install2.pm
+++ b/perl-install/install2.pm
@@ -228,16 +228,7 @@ sub miscellaneous {
installStepsCall($o, $auto, 'miscellaneousBefore', $clicked);
installStepsCall($o, $auto, 'miscellaneous', $clicked);
-
- addToBeDone {
- setVarsInSh("$o->{prefix}/etc/sysconfig/system", {
- CLASS => $::expert && 'expert' || 'beginner',
- SECURITY => $o->{security},
- META_CLASS => $o->{meta_class} || 'PowerPack',
- });
- substInFile { s/KEYBOARD_AT_BOOT=.*/KEYBOARD_AT_BOOT=yes/ } "$o->{prefix}/etc/sysconfig/usb" if detect_devices::usbKeyboards();
-
- } 'installPackages';
+ installStepsCall($o, $auto, 'miscellaneousAfter', $clicked);
}
#------------------------------------------------------------------------------