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