test: add remote runner vagrant scenario

This commit is contained in:
2026-04-30 07:13:20 +00:00
parent 0ca0d367d3
commit fc29bc9f7e
10 changed files with 387 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -euo pipefail
export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get install -y ca-certificates curl git unzip
if ! command -v deno >/dev/null 2>&1; then
curl -fsSL https://deno.land/install.sh | DENO_INSTALL=/usr/local sh
fi
if [ -d /uptime.link ]; then
chown -R vagrant:vagrant /uptime.link
fi