summaryrefslogtreecommitdiffstats
path: root/perl-install/install/steps.pm
diff options
context:
space:
mode:
authorEugeni Dodonov <eugeni@mandriva.org>2009-02-16 17:13:06 +0000
committerEugeni Dodonov <eugeni@mandriva.org>2009-02-16 17:13:06 +0000
commit89a7896512c618eb8f19610755ab64ff80dd1df6 (patch)
treed5ab074a0369f3d0967a5d8f455f3ce541aee4e6 /perl-install/install/steps.pm
parent63ddaa1a0732aabc33fb36792b4812b0c6d4f700 (diff)
downloaddrakx-backup-do-not-use-89a7896512c618eb8f19610755ab64ff80dd1df6.tar
drakx-backup-do-not-use-89a7896512c618eb8f19610755ab64ff80dd1df6.tar.gz
drakx-backup-do-not-use-89a7896512c618eb8f19610755ab64ff80dd1df6.tar.bz2
drakx-backup-do-not-use-89a7896512c618eb8f19610755ab64ff80dd1df6.tar.xz
drakx-backup-do-not-use-89a7896512c618eb8f19610755ab64ff80dd1df6.zip
Correctly handle new msec-based settings during installation (#47822).
Diffstat (limited to 'perl-install/install/steps.pm')
-rw-r--r--perl-install/install/steps.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install/steps.pm b/perl-install/install/steps.pm
index 24b34c046..6ffb79935 100644
--- a/perl-install/install/steps.pm
+++ b/perl-install/install/steps.pm
@@ -505,7 +505,7 @@ EOF
}
- install::any::disable_user_view() if $o->{security} >= 3 || $o->{authentication}{NIS};
+ install::any::disable_user_view() if $o->{security} > 1 || $o->{authentication}{NIS};
run_program::rooted($::prefix, "kdeDesktopCleanup");
#- move some file after an upgrade that may be seriously annoying.
@@ -651,7 +651,7 @@ sub configure_firewall {
my ($o) = @_;
#- set up a firewall if ports have been specified or if the security level is high enough
- $o->{firewall_ports} ||= '' if $o->{security} >= 3 && !exists $o->{firewall_ports};
+ $o->{firewall_ports} ||= '' if $o->{security} >= 1 && !exists $o->{firewall_ports};
if (defined $o->{firewall_ports}) {
require network::drakfirewall;