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
No known key found for this signature in database
GPG Key ID: 2076B128385E8C55
1 changed files with
1 additions and
1 deletions
-
entrypoint-user.sh
|
@ -52,7 +52,7 @@ fi |
|
|
echo -e "" |
|
|
echo -e "" |
|
|
echo -e "Starting Update Checks" |
|
|
echo -e "Starting Update Checks" |
|
|
echo -e "=================================" |
|
|
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" |
|
|
echo -e "update will check every ${UPDATE_CHECK} minutes" |
|
|
|
|
|
|
|
|
# Update game server |
|
|
# Update game server |
|
|