diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-02-07 21:50:52 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-02-07 21:50:52 +0000 |
commit | ed1db3884ceffd84d82021c3f5c2c0c7be73a796 (patch) | |
tree | 71c8604aa8a7b1c979d11816c1d264f349858222 /perl-install/install2.pm | |
parent | dc423de69c436d3ca0db892687581ce036368ae6 (diff) | |
download | drakx-ed1db3884ceffd84d82021c3f5c2c0c7be73a796.tar drakx-ed1db3884ceffd84d82021c3f5c2c0c7be73a796.tar.gz drakx-ed1db3884ceffd84d82021c3f5c2c0c7be73a796.tar.bz2 drakx-ed1db3884ceffd84d82021c3f5c2c0c7be73a796.tar.xz drakx-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.pm | 11 |
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); } #------------------------------------------------------------------------------ |