summaryrefslogtreecommitdiff
path: root/test/integration/targets/ansible-playbook-callbacks/runme.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/ansible-playbook-callbacks/runme.sh')
-rwxr-xr-xtest/integration/targets/ansible-playbook-callbacks/runme.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/integration/targets/ansible-playbook-callbacks/runme.sh b/test/integration/targets/ansible-playbook-callbacks/runme.sh
new file mode 100755
index 0000000000..73c8a3d079
--- /dev/null
+++ b/test/integration/targets/ansible-playbook-callbacks/runme.sh
@@ -0,0 +1,11 @@
+#!/usr/bin/env bash
+
+set -eux
+
+export ANSIBLE_CALLBACK_PLUGINS=../support-callback_plugins/callback_plugins
+export ANSIBLE_ROLES_PATH=../
+export ANSIBLE_STDOUT_CALLBACK=callback_debug
+
+ansible-playbook all-callbacks.yml 2>/dev/null | sort | uniq -c | tee callbacks_list.out
+
+diff -w callbacks_list.out callbacks_list.expected