1
0
Fork 0

bootstrap: info message when chmod

This commit is contained in:
Luca Bilke 2024-06-12 13:19:52 +02:00
parent 5c4b202acb
commit 94969fff0e
No known key found for this signature in database
GPG Key ID: B753481DA0B6FA47
1 changed files with 1 additions and 0 deletions

View File

@ -195,6 +195,7 @@ enable_services() {
finalize() {
gid=$(getent passwd "$username" | cut -d ':' -f 4)
groupname=$(getent group "$gid" | cut -d ':' -f 1)
info "Setting ownership of home directories..."
chown "$username:$groupname" -R "$user_home"
info "Done!"
}