mirror of
https://git.mills.io/prologic/zs-starter-template.git
synced 2024-11-21 21:06:03 +03:00
11 lines
253 B
Bash
Executable File
11 lines
253 B
Bash
Executable File
#!/bin/sh
|
|
|
|
[ -n "${PUID}" ] && usermod -u "${PUID}" mpp
|
|
[ -n "${PGID}" ] && groupmod -g "${PGID}" mpp
|
|
|
|
printf "Configuring mpp...\n"
|
|
npx react-inject-env set -d /data
|
|
|
|
printf "Switching UID=%s and GID=%s\n" "${PUID}" "${PGID}"
|
|
exec su-exec mpp:mpp "$@"
|