summaryrefslogtreecommitdiffstats
path: root/bin/terminate
blob: 7631206bf4c44b318e36a6b7c9240896b89a0925 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash
set -eu
set -o pipefail

case "$1" in
    tozt|algo)
        doctl compute droplet delete "$1"
        ;;
    *)
        echo "unknown host $1" >&2
        exit 1
        ;;
esac