bot_pozhitki/deploy/reload-caddy.sh
2026-09-05 10:39:49 +00:00

15 lines
270 B
Bash
Executable file

#!/bin/sh
set -u
attempt=0
while [ "$attempt" -lt 12 ]; do
if /usr/bin/caddy reload \
--config /home/snw/bot_save_bablo/deploy/Caddyfile.runtime \
--adapter caddyfile; then
exit 0
fi
attempt=$((attempt + 1))
sleep 5
done
exit 1