test: add remote runner vagrant scenario
This commit is contained in:
Executable
+15
@@ -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
|
||||
Reference in New Issue
Block a user