From e02c840d187c1273be4a12677644f80db717bcbd 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 --- panel/panelctl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panel/panelctl.sh b/panel/panelctl.sh index 3cc3578..452370a 100644 --- a/panel/panelctl.sh +++ b/panel/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}" }