Browse Source

Support passing in LGSM command to run

pull/37/head
Josh 2 years ago
parent
commit
0605c17140
No known key found for this signature in database GPG Key ID: B6582BAB451110A0
  1. 9
      entrypoint-user.sh
  2. 2
      entrypoint.sh

9
entrypoint-user.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 ""

2
entrypoint.sh

@ -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

Loading…
Cancel
Save