diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-12-22 20:07:36 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-12-22 20:07:36 +0000 |
commit | e1922243bd426cc4af43aa806027d3c8e1c2a810 (patch) | |
tree | a86284d78d0b3f165d5b224d4cfebcd5a899d55d /perl-install/standalone/draksec | |
parent | 780e03f8220980809fa187aa442978dd2ab7cc33 (diff) | |
download | drakx-backup-do-not-use-e1922243bd426cc4af43aa806027d3c8e1c2a810.tar drakx-backup-do-not-use-e1922243bd426cc4af43aa806027d3c8e1c2a810.tar.gz drakx-backup-do-not-use-e1922243bd426cc4af43aa806027d3c8e1c2a810.tar.bz2 drakx-backup-do-not-use-e1922243bd426cc4af43aa806027d3c8e1c2a810.tar.xz drakx-backup-do-not-use-e1922243bd426cc4af43aa806027d3c8e1c2a810.zip |
no_comment
Diffstat (limited to 'perl-install/standalone/draksec')
-rwxr-xr-x | perl-install/standalone/draksec | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/perl-install/standalone/draksec b/perl-install/standalone/draksec index 8e17f8c54..62ef6e3c2 100755 --- a/perl-install/standalone/draksec +++ b/perl-install/standalone/draksec @@ -14,7 +14,7 @@ local $_ = join '', @ARGV; $::expert = /-expert/ || cat_("/etc/sysconfig/system") =~ /^TYPE="?expert/m; #" $::isStandalone = 1; -my $in = vnew interactive('su'); +my $in = vnew interactive(); my %m = reverse (my %l = ( 0 => _("Windows(TM)"), @@ -24,10 +24,20 @@ my %m = reverse (my %l = ( 4 => _("High"), 5 => _("Paranoid"), )); +my %help = ( + 0 => _("This level is to be used with care. It makes your system more easy to use, but very sensitive: it must not be used for a machine connected to others or to the Internet. There is no password access."), + 1 => _("Password are now enabled, but use as a networked computer is still not recommended."), + 2 => _("Few improvements for this security level, the main one is that there are more security warnings and checks."), + 3 => _("This is the standard security recommended for a computer that will be used to connect to the Internet as a client. There are now security checks. "), + 4 => _("With this security level, the use of this system as a server becomes possible. The security is now high enough to use the system as a server which accept connections from many clients. "), + 5 => _("We take level 4 features, but now the system is entirely closed. Security features are at their maximum."), +); + delete @l{0,1,5} unless $::expert; +delete @help{0,1,5} unless $::expert; -if (my $level = $in->ask_from_list('', -_("Choose security level"), +if (my $level = $in->ask_from_list('', _("Choose security level") . "\n\n" . + join('', map { "$l{$_}: $help{$_}\n\n" } keys %l), [ values %l ], $l{$ENV{SECURE_LEVEL}})) { my $w = $in->wait_message('', _("Setting security level")); $in->suspend; |