diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-09-12 22:48:25 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-09-12 22:48:25 +0000 |
commit | 58a713d0591d48da3f2d0b4bd6c05d976d0dd340 (patch) | |
tree | c08f426f26be77aa205be4ed48a24c691d2ac2ae /perl-install/install_steps.pm | |
parent | 914b79874caf83dec927da037f2a918a6d7f5d67 (diff) | |
download | drakx-58a713d0591d48da3f2d0b4bd6c05d976d0dd340.tar drakx-58a713d0591d48da3f2d0b4bd6c05d976d0dd340.tar.gz drakx-58a713d0591d48da3f2d0b4bd6c05d976d0dd340.tar.bz2 drakx-58a713d0591d48da3f2d0b4bd6c05d976d0dd340.tar.xz drakx-58a713d0591d48da3f2d0b4bd6c05d976d0dd340.zip |
do something with "Security Administrator (login or email)"
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 4439473f4..4ae4c9848 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -945,6 +945,8 @@ sub miscellaneousBefore { my %s = getVarsFromSh("$o->{prefix}/etc/sysconfig/system"); $o->{miscellaneous}{HDPARM} = $s{HDPARM} if exists $s{HDPARM}; $o->{security} ||= any::get_secure_level() || ($o->{meta_class} =~ /server|firewall/ ? 3 : 2); + $o->{security_user} ||= any::config_security_user($o->{prefix}); + $o->{libsafe} ||= any::config_libsafe($o->{prefix}); log::l("security $o->{security}"); |