Browse Source
Support pre/post install hook directories
pull/36/head
Josh Bryans
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
27 additions and
0 deletions
-
entrypoint-user.sh
|
|
@ -12,6 +12,17 @@ exit_handler_user() { |
|
|
|
echo -e "Loading exit handler" |
|
|
|
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 |
|
|
|
if [ ! -f "${GAMESERVER}" ]; then |
|
|
|
echo -e "" |
|
|
@ -30,6 +41,14 @@ elif [ -d "/app/lgsm/modules" ]; then |
|
|
|
chmod +x /app/lgsm/modules/* |
|
|
|
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 |
|
|
|
if [ -z "$(ls -A -- "/data/serverfiles" 2> /dev/null)" ]; then |
|
|
|
echo -e "" |
|
|
@ -57,6 +76,14 @@ if [ -z "${install}" ]; then |
|
|
|
./"${GAMESERVER}" update |
|
|
|
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 "Starting ${GAMESERVER}" |
|
|
|
echo -e "=================================" |
|
|
|