Browse Source
Support passing in LGSM command to run
pull/37/head
Josh
2 years ago
No known key found for this signature in database
GPG Key ID: B6582BAB451110A0
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 "" |
|
|
|
@ -63,5 +63,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 |
|
|