From 63dc3d00031926a0288a4fdf76afc2f01b30b318 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=B4=84=CA=9C=CA=80=C9=AAs=E1=B4=9B=E1=B4=8F=E1=B4=98?= =?UTF-8?q?=CA=9C=E1=B4=87=CA=80=20=E1=B4=8D?= Date: Fri, 10 Oct 2025 13:50:41 -0400 Subject: [PATCH] Set start timeout to 30s This kills the hanging when there is a network issue (port blocking or no Internet) and the installation cannot be completed with no error sent to the output --- cmd/cloudflared/linux_service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/cloudflared/linux_service.go b/cmd/cloudflared/linux_service.go index a950bb9f..0a6d4462 100644 --- a/cmd/cloudflared/linux_service.go +++ b/cmd/cloudflared/linux_service.go @@ -60,7 +60,7 @@ After=network-online.target Wants=network-online.target [Service] -TimeoutStartSec=0 +TimeoutStartSec=30 Type=notify ExecStart={{ .Path }} --no-autoupdate{{ range .ExtraArgs }} {{ . }}{{ end }} Restart=on-failure