Unverified Commit c6e07c82 authored by Kroese's avatar Kroese Committed by GitHub
Browse files

Hide curl output

Hide curl output
parents d17778c0 d890e47c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -13,10 +13,10 @@ fi

IP=$(cat "${FILE}")

if ! curl -m 3 -ILfSs "http://${IP}:${PORT}/"; then
if ! curl -m 3 -ILfSs "http://${IP}:${PORT}/" > /dev/null; then
  echo "Failed to reach ${IP}"
  exit 1
fi

echo "Healthcheck OK for ${IP}"
echo "Healthcheck OK"
exit 0