Skip to content

Console Output

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