Skip to content

Commit 79ccb47

Browse files
committed
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.
1 parent e1feaac commit 79ccb47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entrypoint-user.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ fi
5252
echo -e ""
5353
echo -e "Starting Update Checks"
5454
echo -e "================================="
55-
echo -e "* */${UPDATE_CHECK} * * * /app/${GAMESERVER} update > /dev/null 2>&1" | crontab -
55+
echo -e "*/${UPDATE_CHECK} * * * * /app/${GAMESERVER} update > /dev/null 2>&1" | crontab -
5656
echo -e "update will check every ${UPDATE_CHECK} minutes"
5757

5858
# Update game server

0 commit comments

Comments
 (0)