tools: use compose up -d for ppf-service restart

This commit is contained in:
Username
2026-02-17 23:23:10 +01:00
parent 195d25c653
commit 8779979780

View File

@@ -141,7 +141,7 @@ cmd_restart() {
local hosts="$1"
section "Restarting containers"
for host in $hosts; do
compose_cmd "$host" "restart" > /dev/null 2>&1 \
compose_cmd "$host" "up -d" > /dev/null 2>&1 \
&& log_ok "$host restarted" \
|| log_err "$host restart failed"
done