From 161911a125c510ad17a20cd9d360bb913a1b787d Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Thu, 26 Jun 2025 00:50:19 +0200 Subject: [PATCH] Clarify SIGHUP log message This patch updates the log message on SIGHUP to only mention reloading of the ACL policy. --- hscontrol/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hscontrol/app.go b/hscontrol/app.go index b0e4a9e9..bb98f82d 100644 --- a/hscontrol/app.go +++ b/hscontrol/app.go @@ -822,7 +822,7 @@ func (h *Headscale) Serve() error { case syscall.SIGHUP: log.Info(). Str("signal", sig.String()). - Msg("Received SIGHUP, reloading ACL and Config") + Msg("Received SIGHUP, reloading ACL policy") if h.cfg.Policy.IsEmpty() { continue