Browse Source

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.
pull/38/head
Daniel Gibbs 1 year ago
parent
commit
79ccb47c81
No known key found for this signature in database GPG Key ID: 2076B128385E8C55
  1. 2
      entrypoint-user.sh

2
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

Loading…
Cancel
Save