From 28d631ca781cd1ca6f0c8307bb9daabd6a8e8c06 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 16 Jul 2026 21:53:21 +0800 Subject: [PATCH] fix: waiter config discovery fallback for root, socket path from config --- cmd/waiter/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/waiter/config.go b/cmd/waiter/config.go index 1dc55e5..2063147 100644 --- a/cmd/waiter/config.go +++ b/cmd/waiter/config.go @@ -68,6 +68,7 @@ func configCandidates() []string { if home != "" { cands = append(cands, filepath.Join(home, ".config", "homeagent", "waiter.yaml")) } + cands = append(cands, "/root/.config/homeagent/waiter.yaml") cands = append(cands, filepath.Join(".", "waiter.yaml"))