summaryrefslogtreecommitdiff
path: root/test/integration/targets/ansible-playbook-callbacks/runme.sh
blob: 73c8a3d07993cd527f6ba5cca2e27a64fcad6e8e (plain)
1
2
3
4
5
6
7
8
9
10
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