Browse Source

feat: add symlink for LGSM_CONFIG

This commit adds a symlink for the LGSM_CONFIG file to the /app/lgsm/config-lgsm directory. This allows for easier access and management of the configuration file.
pull/42/head
Daniel Gibbs 1 year ago
parent
commit
24109fdb3a
No known key found for this signature in database GPG Key ID: 2076B128385E8C55
  1. 9
      entrypoint-user.sh

9
entrypoint-user.sh

@ -20,6 +20,15 @@ if [ ! -f "${GAMESERVER}" ]; then
./linuxgsm.sh "${GAMESERVER}"
fi
# Symlink LGSM_CONFIG to /app/lgsm/config-lgsm
if [ ! -d "/app/lgsm/config-lgsm" ]; then
echo -e ""
echo -e "creating symlink for ${LGSM_CONFIG}"
echo -e "================================="
ln -s "${LGSM_CONFIG}" "/app/lgsm/config-lgsm"
fi
# Clear modules directory if not master
if [ "${LGSM_GITHUBBRANCH}" != "master" ]; then
echo -e "not master branch, clearing modules directory"

Loading…
Cancel
Save