summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone
diff options
context:
space:
mode:
authorChristian Belisle <cbelisle@mandriva.com>2002-06-17 04:06:46 +0000
committerChristian Belisle <cbelisle@mandriva.com>2002-06-17 04:06:46 +0000
commitc8b4167e2c4fbda26bee20e4be16aeb2de01aed8 (patch)
treeee90c3ec7c2a061268a0062dfff93e25bff18f0b /perl-install/standalone
parent88bd3566e8da9aa970eb308f66d7840ce00f62a9 (diff)
downloaddrakx-backup-do-not-use-c8b4167e2c4fbda26bee20e4be16aeb2de01aed8.tar
drakx-backup-do-not-use-c8b4167e2c4fbda26bee20e4be16aeb2de01aed8.tar.gz
drakx-backup-do-not-use-c8b4167e2c4fbda26bee20e4be16aeb2de01aed8.tar.bz2
drakx-backup-do-not-use-c8b4167e2c4fbda26bee20e4be16aeb2de01aed8.tar.xz
drakx-backup-do-not-use-c8b4167e2c4fbda26bee20e4be16aeb2de01aed8.zip
added server, user and network advanced options
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-xperl-install/standalone/draksec34
1 files changed, 32 insertions, 2 deletions
diff --git a/perl-install/standalone/draksec b/perl-install/standalone/draksec
index e73e8a01e..ca7337c81 100755
--- a/perl-install/standalone/draksec
+++ b/perl-install/standalone/draksec
@@ -44,22 +44,52 @@ my $security = any::get_secure_level('');
my $libsafe = any::config_libsafe('');
my @logins = security::msec::get_user_list('');
my $email = "put.your\@email.here";
+my $w;
+my (@options) = security::msec::get_config('', $security);
+
+my $expert_file = "/etc/security/msec/expert_mode";
+my $expert_section = "";
+
+#for $href (@options) {
+# for $href2 (keys %$href) {
+# %noref = %$href;
+# print "$href2 = $noref{$href2}{description}\n";
+# }
+#}
if (any::choose_security_level($in, \$security, \$libsafe, \$email)) {
any::config_libsafe('', $libsafe);
- my $w = $in->wait_message('', _("Setting security level"));
+ $w = $in->wait_message('', _("Setting security level"));
$in->suspend;
$ENV{LILO_PASSWORD} = ''; # make it non interactive
system "/usr/sbin/msec", $security;
$in->resume;
- my $w = $in->wait_message('', _("Setting security user"));
+ $w = $in->wait_message('', _("Setting security user"));
$in->suspend;
security::msec::add_config('', "set_security_conf", "MAIL_USER", $email);
security::msec::commit_changes('');
$in->resume;
}
+while (-f $expert_file) {
+ $expert_section = cat_($expert_file);
+
+ %config_hash = %{ $options[$expert_section] };
+
+# foreach $key (keys %config_hash) {
+# print "$key = $config_hash{$key}{val}\n";
+# }
+
+ if(any::choose_security_options($in, $security, $libsafe, \$email, \%config_hash)) {
+ $w = $in->wait_message('', _("Setting security options"));
+ $in->suspend;
+ $in->resume;
+ }
+
+ rm_rf($expert_file);
+}
+
!$::isEmbedded ? $in->exit(0) : kill(USR1, $::CCPID);
goto begin;