Skip to content

Console Output

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