summaryrefslogtreecommitdiffstats
path: root/perl-install/install_any.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r--perl-install/install_any.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm
index b4fcd68a6..78314fd34 100644
--- a/perl-install/install_any.pm
+++ b/perl-install/install_any.pm
@@ -236,7 +236,7 @@ sub spawnShell {
sub fsck_option {
my ($o) = @_;
- my $y = $o->{security} < 3 && $::beginner ? "-y " : "";
+ my $y = $o->{security} < 3 && !$::expert && "-y ";
substInFile { s/^(\s*fsckoptions="?)(-y )?/$1$y/ } "$o->{prefix}/etc/rc.d/rc.sysinit";
}