Skip to content

Commit

Permalink
fix: fix cron schedule in entrypoint-user.sh
Browse files Browse the repository at this point in the history
The cron schedule for the game server update was incorrect. It has been fixed to run every ${UPDATE_CHECK} minutes.
  • Loading branch information
dgibbs64 committed Nov 8, 2023
1 parent e1feaac commit 79ccb47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint-user.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 79ccb47

Please sign in to comment.