From 47dbd52c256ac447da0ab326348af0c064b21ff9 Mon Sep 17 00:00:00 2001 From: Jakub Dorfman Date: Mon, 27 Apr 2026 00:27:38 +0200 Subject: [PATCH] fixed permission updates to route.caddy when removing container --- panel/panelctl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panel/panelctl.sh b/panel/panelctl.sh index 452370a..d65b5c8 100644 --- a/panel/panelctl.sh +++ b/panel/panelctl.sh @@ -455,7 +455,7 @@ cmd_remove() { local tmp tmp="$(mktemp)" sed "/^# route:${name}:start$/,/^# route:${name}:end$/d" "${route_file}" >"${tmp}" || true - mv "${tmp}" "${route_file}" + install -m 0664 -o reudy -g panelroutes "${tmp}" "${route_file}" fi rm -f "$(app_manifest "${name}")"