summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/register/runme.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/register/runme.sh')
-rwxr-xr-xtest/integration/targets/register/runme.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/integration/targets/register/runme.sh b/test/integration/targets/register/runme.sh
new file mode 100755
index 0000000..8adc504
--- /dev/null
+++ b/test/integration/targets/register/runme.sh
@@ -0,0 +1,12 @@
+#!/usr/bin/env bash
+
+set -eux
+
+# does it work?
+ansible-playbook can_register.yml -i ../../inventory -v "$@"
+
+# ensure we do error when it its apprpos
+set +e
+result="$(ansible-playbook invalid.yml -i ../../inventory -v "$@" 2>&1)"
+set -e
+grep -q "Invalid variable name in " <<< "${result}"