From 24109fdb3ae7bc982e862b2efbb804ff5612fb48 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 23 Jan 2024 22:23:05 +0000 Subject: [PATCH] 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. --- entrypoint-user.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/entrypoint-user.sh b/entrypoint-user.sh index e988220..514e877 100755 --- a/entrypoint-user.sh +++ b/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"