summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-01-16 12:43:36 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-01-16 12:43:36 +0000
commitb4955db27bf8703e7088da788a9f15c0c96ae2a4 (patch)
tree1d73b99b501a2bf5c1c00d3fa76efefc8a46bb44 /perl-install/install_steps_interactive.pm
parentcbeb27e8f884eaa0fdc9abe84b1b8789157d2a61 (diff)
downloaddrakx-backup-do-not-use-b4955db27bf8703e7088da788a9f15c0c96ae2a4.tar
drakx-backup-do-not-use-b4955db27bf8703e7088da788a9f15c0c96ae2a4.tar.gz
drakx-backup-do-not-use-b4955db27bf8703e7088da788a9f15c0c96ae2a4.tar.bz2
drakx-backup-do-not-use-b4955db27bf8703e7088da788a9f15c0c96ae2a4.tar.xz
drakx-backup-do-not-use-b4955db27bf8703e7088da788a9f15c0c96ae2a4.zip
ask security level in every install
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm7
1 files changed, 3 insertions, 4 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index a2be95bc5..6027828b7 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -1108,10 +1108,9 @@ try to force installation even if that destroys the first partition?"));
sub miscellaneous {
my ($o, $_clicked) = @_;
- if ($::expert) {
- require security::level;
- security::level::level_choose($o, \$o->{security}, \$o->{libsafe}, \$o->{security_user}) or return;
- }
+ require security::level;
+ security::level::level_choose($o, \$o->{security}, \$o->{libsafe}, \$o->{security_user}) or return;
+
install_steps::miscellaneous($o);
}