summaryrefslogtreecommitdiff
path: root/run-muck.sh
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-03-16 14:26:02 +0200
committerLars Wirzenius <liw@liw.fi>2019-03-16 14:26:02 +0200
commitbd369ec68d84522172dbfa2691b5d0f8d933c99a (patch)
tree116f8fa063292c3a8b49772a7ec7d29519ae39de /run-muck.sh
parent95edefdb97c63e5e6bb48567775a4dc0eb2c685b (diff)
downloadick2-ansible-bd369ec68d84522172dbfa2691b5d0f8d933c99a.tar.gz
Drop: run-* scripts in favour of run-ansible
Diffstat (limited to 'run-muck.sh')
-rwxr-xr-xrun-muck.sh25
1 files changed, 0 insertions, 25 deletions
diff --git a/run-muck.sh b/run-muck.sh
deleted file mode 100755
index f8ded27..0000000
--- a/run-muck.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash
-
-set -eu
-
-
-getaddr()
-{
- awk -v "name=$1" '$1 == name { print $2 }' "$hosts_in" |
- sed 's/ansible_ssh_host=//'
-}
-
-
-mkhosts()
-{
- cat <<EOF
-muck ansible_ssh_host=$(getaddr muck)
-EOF
-}
-
-hosts_in="$1"
-shift 1
-mkhosts > hosts.tmp
-ansible-playbook -i hosts.tmp muck.yml \
- -e "muck_domain=$(getaddr muck)" \
- "$@"