summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/helpers/launch-tozt23
-rwxr-xr-xbin/launch2
-rwxr-xr-xbin/terminate5
3 files changed, 2 insertions, 28 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"
diff --git a/bin/launch b/bin/launch
index 94aefb9..d24acf5 100755
--- a/bin/launch
+++ b/bin/launch
@@ -6,7 +6,7 @@ script_path="$(realpath "$(dirname "$0")")"
secrets_bin="${script_path}/secrets"
case "$1" in
-base | tozt | algo | mail | partofme)
+base | algo | mail | partofme)
"$secrets_bin" open
trap '"$secrets_bin" close' EXIT
"$(dirname "$0")/helpers/launch-$1"
diff --git a/bin/terminate b/bin/terminate
index 202e236..e760c09 100755
--- a/bin/terminate
+++ b/bin/terminate
@@ -6,13 +6,10 @@ script_path="$(realpath "$(dirname "$0")")"
secrets_bin="${script_path}/secrets"
case "$1" in
-tozt | algo | mail | mail2)
+algo | mail | mail2)
"$secrets_bin" open
trap '"$secrets_bin" close' EXIT
case "$1" in
- tozt)
- hostname=tozt.net
- ;;
algo)
hostname=algo.tozt.net
;;