From 725018f8b4327c411c69855139e1b01e4ca28be2 Mon Sep 17 00:00:00 2001 From: Tobias Tangemann Date: Wed, 13 Nov 2024 22:47:55 +0100 Subject: [PATCH] Clarify return code --- docker/files/players-online.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/files/players-online.sh b/docker/files/players-online.sh index aa2444d..5814b74 100755 --- a/docker/files/players-online.sh +++ b/docker/files/players-online.sh @@ -5,7 +5,7 @@ ONLINE_COUNT=$(echo "$PLAYERS" | grep -c " (online)$") if [[ "$ONLINE_COUNT" -gt "0" ]]; then echo "$PLAYERS" - # exit with 75 (EX_TEMPFAIL) for watchtower + # exit with 75 (EX_TEMPFAIL) so watchtower skips the update # https://containrrr.dev/watchtower/lifecycle-hooks/ exit 75 fi