summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index da7d576cd..527bed9f9 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -1237,7 +1237,9 @@ try to force installation even if that destroys the first partition?"));
sub miscellaneous {
my ($o, $clicked) = @_;
- any::choose_security_level($o, \$o->{security}, \$o->{libsafe}) or return;
+ if ($::expert) {
+ any::choose_security_level($o, \$o->{security}, \$o->{libsafe}) or return;
+ }
install_steps::miscellaneous($o);
}