From 79ccb47c81c7412eed6094a0499b4f2c4b26047b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 8 Nov 2023 17:37:53 +0000 Subject: [PATCH] fix: fix cron schedule in entrypoint-user.sh The cron schedule for the game server update was incorrect. It has been fixed to run every ${UPDATE_CHECK} minutes. --- entrypoint-user.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint-user.sh b/entrypoint-user.sh index a6b7844..e988220 100755 --- a/entrypoint-user.sh +++ b/entrypoint-user.sh @@ -52,7 +52,7 @@ fi echo -e "" echo -e "Starting Update Checks" echo -e "=================================" -echo -e "* */${UPDATE_CHECK} * * * /app/${GAMESERVER} update > /dev/null 2>&1" | crontab - +echo -e "*/${UPDATE_CHECK} * * * * /app/${GAMESERVER} update > /dev/null 2>&1" | crontab - echo -e "update will check every ${UPDATE_CHECK} minutes" # Update game server