From af8961d1943a4301b3b6e4a3e0c7faf2b95d031e Mon Sep 17 00:00:00 2001 From: root Date: Wed, 20 May 2026 18:39:11 +0200 Subject: [PATCH] bootstrap.sh: LAN probe uses GET not HEAD (issuance only handles GET) --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index e020fd0..dd6cb0d 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -150,7 +150,7 @@ if command -v netbird >/dev/null && netbird status 2>/dev/null | grep -q "Manage MESH_CONNECTED="netbird" elif command -v tailscale >/dev/null && tailscale status >/dev/null 2>&1; then MESH_CONNECTED="tailscale" -elif curl -sfI -o /dev/null --max-time 3 "${ISSUANCE_URL_NETBIRD%/issue}/health" 2>/dev/null; then +elif curl -sf -o /dev/null --max-time 3 "${ISSUANCE_URL_NETBIRD%/issue}/health" 2>/dev/null; then MESH_CONNECTED="lan" fi if [ -z "$MESH_CONNECTED" ] && [ "$NO_SECRETS" -eq 0 ]; then