Small refactor of user/groups and add checks during startup. Only use -x in bash scripts when DEBUG=true set in env vars

This commit is contained in:
Jamie Curnow
2023-05-04 10:03:06 +10:00
parent a1245bc161
commit c432c34fb3
14 changed files with 70 additions and 45 deletions

View File

@ -5,8 +5,6 @@
# or disable ipv6 in all nginx configs based on this setting.
set -e
# verbose
set -x
log_info 'IPv6 ...'
@ -33,7 +31,7 @@ process_folder () {
sed -E -i "$SED_REGEX" "$FILE"
done
# ensure the files are still owned by the npmuser
# ensure the files are still owned by the npm user
chown -R "$PUID:$PGID" "$1"
}