diff options
author | damien <damien@mandriva.com> | 2001-08-31 14:09:09 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-08-31 14:09:09 +0000 |
commit | 6f93d25513c185c98748a267dd203d80291c4224 (patch) | |
tree | 0cf4c0aa3d7a0c34a9238be22e1aa84bf55aab8d /perl-install/standalone/draksec | |
parent | c62686535f025e1a33b8f329d3486b10468bbe19 (diff) | |
download | drakx-6f93d25513c185c98748a267dd203d80291c4224.tar drakx-6f93d25513c185c98748a267dd203d80291c4224.tar.gz drakx-6f93d25513c185c98748a267dd203d80291c4224.tar.bz2 drakx-6f93d25513c185c98748a267dd203d80291c4224.tar.xz drakx-6f93d25513c185c98748a267dd203d80291c4224.zip |
corrected yesno interpretation
Diffstat (limited to 'perl-install/standalone/draksec')
-rwxr-xr-x | perl-install/standalone/draksec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/draksec b/perl-install/standalone/draksec index e6152917f..231b19a82 100755 --- a/perl-install/standalone/draksec +++ b/perl-install/standalone/draksec @@ -57,7 +57,7 @@ $secure_level = ${{ getVarsFromSh("/etc/profile") }}{SECURE_LEVEL} || $ENV{SECUR my ($level, $libsafe); my %h = getVarsFromSh("$prefix/etc/sysconfig/system"); -$libsafe = $h{LIBSAFE}; +$libsafe = $h{LIBSAFE} =~ /yes/i; if ($in->ask_from('', _("Choose security level") . "\n\n" . join('', map { "$l{$_}: $help{$_}\n\n" } keys %l), |