mirror of
https://git.mills.io/prologic/zs.git
synced 2024-11-03 01:38:30 -04:00
339de0457c
Fixes #5 Fixes #8 Fixes #9 Co-authored-by: James Mills <1290234+prologic@users.noreply.github.com> Reviewed-on: https://git.mills.io/prologic/zs/pulls/10
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 "$@"
|