From c620242da5793a53e89d6079826b7aa6b43f5ae9 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 17 Jan 2022 12:14:08 +0100 Subject: [PATCH] fix: fix healthcheck --- overlay/usr/local/bin/healthcheck | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlay/usr/local/bin/healthcheck b/overlay/usr/local/bin/healthcheck index cb2ab4b..5c225b7 100755 --- a/overlay/usr/local/bin/healthcheck +++ b/overlay/usr/local/bin/healthcheck @@ -5,6 +5,6 @@ set -eo pipefail URL=http://127.0.0.1:8080/alive -! wget --quiet --tries=1 --spider ${URL} || exit 1 +wget --quiet --tries=1 --spider ${URL} || exit 1 exit 0