mirror of
https://git.mills.io/prologic/zs.git
synced 2024-11-14 16:26:10 -05:00
Add set -e to entrypoint
This commit is contained in:
parent
15e7a102cd
commit
f12b2286d9
@ -1,11 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
if [ "$(id -u)" -eq 0 ]; then
|
||||
[ -n "${PUID}" ] && usermod -u "${PUID}" nobody
|
||||
[ -n "${PGID}" ] && groupmod -g "${PGID}" nobody
|
||||
fi
|
||||
|
||||
printf "Configuring zs...\n"
|
||||
printf "Configuring application...\n"
|
||||
|
||||
if [ "$(id -u)" -eq 0 ]; then
|
||||
printf "Switching UID=%s and GID=%s\n" "$(id -u nobody)" "$(id -g nobody)"
|
||||
|
Loading…
Reference in New Issue
Block a user