Ensure that the home directory exists even if the user already exists

This commit is contained in:
Eelco Dolstra 2015-02-24 11:57:03 +01:00
parent 31e4ce5e03
commit 16cf3ee9da

View File

@ -174,12 +174,12 @@ foreach my $u (@{$spec->{users}}) {
} elsif (defined $u->{initialHashedPassword}) {
$u->{hashedPassword} = $u->{initialHashedPassword};
}
}
# Create a home directory.
if ($u->{createHome}) {
make_path($u->{home}, { mode => 0700 }) if ! -e $u->{home};
chown $u->{uid}, $u->{gid}, $u->{home};
}
# Create a home directory.
if ($u->{createHome} && ! -e $u->{home}) {
make_path($u->{home}, { mode => 0700 }) if ! -e $u->{home};
chown $u->{uid}, $u->{gid}, $u->{home};
}
if (defined $u->{passwordFile}) {