diff options
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index ffdd0ceee..d401d58a0 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -491,7 +491,7 @@ sub addUser($) { chmod $mode, "$p$u->{home}"; } } - commands::chown_("-r", "$u->{uid}.$u->{gid}", "$p$u->{home}") + eval { commands::chown_("-r", "$u->{uid}.$u->{gid}", "$p$u->{home}") } if $u->{uid} != $u->{oldu} || $u->{gid} != $u->{oldg}; my $msec = "$o->{prefix}/etc/security/msec"; |