diff options
Diffstat (limited to 'support/scripts/mkusers')
-rwxr-xr-x | support/scripts/mkusers | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/scripts/mkusers b/support/scripts/mkusers index 3fa0fa84c8..ffd192dba3 100755 --- a/support/scripts/mkusers +++ b/support/scripts/mkusers @@ -342,7 +342,7 @@ add_one_user() { # (Note: stdout goes to the fakeroot-script) if [ "${home}" != "-" ]; then mkdir -p "${TARGET_DIR}/${home}" - printf "chown -R %d:%d '%s'\n" "${uid}" "${_gid}" "${TARGET_DIR}/${home}" + printf "chown -h -R %d:%d '%s'\n" "${uid}" "${_gid}" "${TARGET_DIR}/${home}" fi } |