summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Belisle <cbelisle@mandriva.com>2002-06-10 15:45:54 +0000
committerChristian Belisle <cbelisle@mandriva.com>2002-06-10 15:45:54 +0000
commited6b6d15843f20793fb4527012ad2cad7b04db59 (patch)
tree90ae0ea95ca434bca26e2c4587b2423de61b513f
parentec73b15db1d1a7ea5c77e67847e0521b4e61d22e (diff)
downloaddrakx-backup-do-not-use-ed6b6d15843f20793fb4527012ad2cad7b04db59.tar
drakx-backup-do-not-use-ed6b6d15843f20793fb4527012ad2cad7b04db59.tar.gz
drakx-backup-do-not-use-ed6b6d15843f20793fb4527012ad2cad7b04db59.tar.bz2
drakx-backup-do-not-use-ed6b6d15843f20793fb4527012ad2cad7b04db59.tar.xz
drakx-backup-do-not-use-ed6b6d15843f20793fb4527012ad2cad7b04db59.zip
Add an entry for the security user email
-rwxr-xr-xperl-install/standalone/draksec30
1 files changed, 28 insertions, 2 deletions
diff --git a/perl-install/standalone/draksec b/perl-install/standalone/draksec
index 1fed07193..e73e8a01e 100755
--- a/perl-install/standalone/draksec
+++ b/perl-install/standalone/draksec
@@ -1,5 +1,23 @@
#!/usr/bin/perl
+# DrakSec
+
+# Copyright (C) 2002 MandrakeSoft (cbelisle@mandrakesoft.com)
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
use lib qw(/usr/lib/libDrakX);
use standalone; #- warning, standalone must be loaded very first, for 'explanations'
@@ -8,6 +26,7 @@ use common;
use interactive;
use any;
use c;
+use security::msec;
local $_ = join '', @ARGV;
@@ -23,9 +42,10 @@ $::isEmbedded and kill USR2, $::CCPID;
my $security = any::get_secure_level('');
my $libsafe = any::config_libsafe('');
+my @logins = security::msec::get_user_list('');
+my $email = "put.your\@email.here";
-if (any::choose_security_level($in, \$security, \$libsafe)) {
-
+if (any::choose_security_level($in, \$security, \$libsafe, \$email)) {
any::config_libsafe('', $libsafe);
my $w = $in->wait_message('', _("Setting security level"));
@@ -33,6 +53,12 @@ if (any::choose_security_level($in, \$security, \$libsafe)) {
$ENV{LILO_PASSWORD} = ''; # make it non interactive
system "/usr/sbin/msec", $security;
$in->resume;
+
+ my $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;
}
!$::isEmbedded ? $in->exit(0) : kill(USR1, $::CCPID);