summaryrefslogtreecommitdiffstats
path: root/bin/helpers
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2023-03-27 22:56:13 -0400
committerJesse Luehrs <doy@tozt.net>2023-03-27 22:56:13 -0400
commit95aa55f06f4c148640537d8135c513a1a4a7da12 (patch)
treef89df2bed59e4a68b045edf7bf893c8efd3f6fb9 /bin/helpers
parente04ae5b511181c5955a8672005c4e96fe04fed63 (diff)
downloadpuppet-tozt-95aa55f06f4c148640537d8135c513a1a4a7da12.tar.gz
puppet-tozt-95aa55f06f4c148640537d8135c513a1a4a7da12.zip
remove tozt from existing scripts
Diffstat (limited to 'bin/helpers')
-rwxr-xr-xbin/helpers/launch-tozt23
1 files changed, 0 insertions, 23 deletions
diff --git a/bin/helpers/launch-tozt b/bin/helpers/launch-tozt
deleted file mode 100755
index 4777472..0000000
--- a/bin/helpers/launch-tozt
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/env bash
-set -eu
-set -o pipefail
-
-# shellcheck source=functions.sh
-. "$(dirname "$0")/functions.sh"
-
-create_droplet tozt.net s-1vcpu-2gb 4206344e-cf4f-11e8-a5a7-0a58ac1465db
-
-echo "Assigning floating ip to tozt..."
-# XXX this returns an error for some reason, but actually succeeds:
-# Error: could not assign IP to droplet: json: cannot unmarshal number
-# 2328181259 into Go struct field Action.resource_id of type int
-doctl \
- -t "$(cat /mnt/digitalocean)" \
- compute floating-ip-action assign \
- 138.197.58.11 \
- "$id" || true
-echo "Done assigning floating ip"
-
-provision_droplet tozt
-
-echo "Done"