From e5a902d562e3e67bd68cf77338b97619f3815ab0 Mon Sep 17 00:00:00 2001 From: Jakub Dorfman Date: Mon, 27 Apr 2026 00:19:55 +0200 Subject: [PATCH] fixed permissions durring caddy conf render --- panelctl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panelctl.sh b/panelctl.sh index 3cc3578..452370a 100644 --- a/panelctl.sh +++ b/panelctl.sh @@ -325,7 +325,7 @@ cmd_render_route() { printf "# route:%s:end\n" "${name}" } >>"${tmp}" - mv "${tmp}" "${route_file}" + install -m 0664 -o reudy -g panelroutes "${tmp}" "${route_file}" echo "rendered route ${route_file}" }