Browse Source

Support pre/post install hook directories

pull/36/head
Josh Bryans 2 years ago
committed by GitHub
parent
commit
0611da8868
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 27
      entrypoint-user.sh

27
entrypoint-user.sh

@ -12,6 +12,17 @@ exit_handler_user() {
echo -e "Loading exit handler" echo -e "Loading exit handler"
trap exit_handler_user SIGQUIT SIGINT SIGTERM trap exit_handler_user SIGQUIT SIGINT SIGTERM
execute_hook_directory() {
for f in $1; do
bash "$f"
if [ $? -ne 0 ]
then
echo "Failed running hook \"$f\". exit code $?"
exit 1
fi
done
}
# Setup game server # Setup game server
if [ ! -f "${GAMESERVER}" ]; then if [ ! -f "${GAMESERVER}" ]; then
echo -e "" echo -e ""
@ -30,6 +41,14 @@ elif [ -d "/app/lgsm/modules" ]; then
chmod +x /app/lgsm/modules/* chmod +x /app/lgsm/modules/*
fi fi
# Run pre-install scripts
if [ -d "/app/hooks/pre-install" ]; then
echo -e ""
echo -e "Executing pre-install hooks"
echo -e "================================="
execute_hook_directory "/app/hooks/pre-install/*.sh"
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 ""
@ -57,6 +76,14 @@ if [ -z "${install}" ]; then
./"${GAMESERVER}" update ./"${GAMESERVER}" update
fi fi
# Run pre-install scripts
if [ -d "/app/hooks/post-install" ]; then
echo -e ""
echo -e "Executing post-install hooks"
echo -e "================================="
execute_hook_directory "/app/hooks/post-install/*.sh"
fi
echo -e "" echo -e ""
echo -e "Starting ${GAMESERVER}" echo -e "Starting ${GAMESERVER}"
echo -e "=================================" echo -e "================================="

Loading…
Cancel
Save