summaryrefslogtreecommitdiffstats
path: root/controller/ansible_helpers/wait-for-ssh
diff options
context:
space:
mode:
Diffstat (limited to 'controller/ansible_helpers/wait-for-ssh')
-rwxr-xr-xcontroller/ansible_helpers/wait-for-ssh11
1 files changed, 0 insertions, 11 deletions
diff --git a/controller/ansible_helpers/wait-for-ssh b/controller/ansible_helpers/wait-for-ssh
deleted file mode 100755
index eb3880a..0000000
--- a/controller/ansible_helpers/wait-for-ssh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash -x
-
-where="$1"
-
-test -z "$where" && echo >&2 "no host specified" && exit 1
-
-while [ 1 ]; do
- ssh -o StrictHostKeyChecking=no -q $where exit &>/dev/null && exit 0
-done
-
-exit 1