Josh Bryans
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
10 additions and
1 deletions
-
entrypoint-user.sh
-
entrypoint.sh
|
@ -30,6 +30,15 @@ elif [ -d "/app/lgsm/modules" ]; then |
|
|
chmod +x /app/lgsm/modules/* |
|
|
chmod +x /app/lgsm/modules/* |
|
|
fi |
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
# If a command was passed in, run it and exit |
|
|
|
|
|
if [ "$1" != "" ]; then |
|
|
|
|
|
echo -e "" |
|
|
|
|
|
echo -e "Running ${GAMESERVER}" |
|
|
|
|
|
echo -e "=================================" |
|
|
|
|
|
./"${GAMESERVER}" "$1" |
|
|
|
|
|
exit 0 |
|
|
|
|
|
fi |
|
|
|
|
|
|
|
|
# Install game server |
|
|
# Install game server |
|
|
if [ -z "$(ls -A -- "/data/serverfiles" 2> /dev/null)" ]; then |
|
|
if [ -z "$(ls -A -- "/data/serverfiles" 2> /dev/null)" ]; then |
|
|
echo -e "" |
|
|
echo -e "" |
|
|
|
@ -66,5 +66,5 @@ export HOME=/data |
|
|
echo -e "" |
|
|
echo -e "" |
|
|
echo -e "Switch to user ${USER}" |
|
|
echo -e "Switch to user ${USER}" |
|
|
echo -e "=================================" |
|
|
echo -e "=================================" |
|
|
exec gosu "${USER}" /app/entrypoint-user.sh & |
|
|
exec gosu "${USER}" /app/entrypoint-user.sh "$@" & |
|
|
wait |
|
|
wait |
|
|