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