#!/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