mirror of
https://git.mills.io/prologic/zs-starter-template.git
synced 2024-11-19 10:55:57 -05:00
10 lines
214 B
Bash
Executable File
10 lines
214 B
Bash
Executable File
#!/bin/sh
|
|
|
|
[ -n "${PUID}" ] && usermod -u "${PUID}" zs
|
|
[ -n "${PGID}" ] && groupmod -g "${PGID}" zs
|
|
|
|
printf "Configuring zs...\n"
|
|
|
|
printf "Switching UID=%s and GID=%s\n" "${PUID}" "${PGID}"
|
|
exec su-exec zs:zs "$@"
|