diff options
-rw-r--r-- | perl-install/install_steps.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index a2a43e6dc..25f8a0942 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -926,6 +926,10 @@ sub miscellaneousBefore { $o->{security} ||= $s{SECURITY} if exists $s{SECURITY}; $ENV{SECURE_LEVEL} = $o->{security}; + + mkdir_p("$o->{prefix}/etc/sysconfig/msec"); + symlink "server.$o->{security}", "/etc/security/msec/server" if $o->{security} > 3; + add2hash_ $o, { useSupermount => 1 && $o->{security} < 4 && arch() !~ /sparc/ && !$::corporate }; add2hash_($o->{miscellaneous} ||= {}, { numlock => !$o->{pcmcia} }); |