Skip to content

Console Output

10:54:41 [2026-07-28T08:54:41.880Z] + set -eu
10:54:41 [2026-07-28T08:54:41.880Z] + ssh -o StrictHostKeyChecking=accept-new -o BatchMode=yes -o ConnectTimeout=15 root@192.168.12.81 
10:54:41 [2026-07-28T08:54:41.880Z]                 set -eu
10:54:41 [2026-07-28T08:54:41.880Z]                 live=$(basename $(readlink -f /var/www/blut24.com/web/current))
10:54:41 [2026-07-28T08:54:41.880Z]                 [ "$live" = "7-4476c9c" ] || { echo "web -> $live, expected 7-4476c9c"; exit 1; }
10:54:41 [2026-07-28T08:54:41.880Z]                 port=$(grep -E '^NITRO_PORT=' /var/www/blut24.com/private/blut24-landing/shared/.env | cut -d= -f2 || echo 3002)
10:54:41 [2026-07-28T08:54:41.880Z]                 code=$(curl -s -o /dev/null -w '%{http_code}' -m 10 http://127.0.0.1:$port/)
10:54:41 [2026-07-28T08:54:41.880Z]                 [ "$code" = "200" ] || { echo "health check returned $code"; exit 1; }
10:54:41 [2026-07-28T08:54:41.880Z]                 echo "smoke OK: $live on :$port"
10:54:41 [2026-07-28T08:54:41.880Z]               
10:54:42 [2026-07-28T08:54:42.431Z] smoke OK: 7-4476c9c on :3002