summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index 60718fc88..225a0d3c1 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -323,7 +323,7 @@ sub addUser($) {
foreach (@l) {
if (! -d "$p$_->{home}") {
- my $mode = $o->{security} < 3 ? 0755 : 0750;
+ my $mode = $o->{security} < 2 ? 0755 : 0750;
eval { commands::cp("-f", "$p/etc/skel", "$p$_->{home}") };
if ($@) {
log::l("copying of skel failed: $@"); mkdir("$p$_->{home}", $mode);