mirror of
https://github.com/ansible/ansible.git
synced 2026-07-28 16:15:12 +02:00
This brings in integration test fixes from the data tagging PR which are unrelated to DT changes.
23 lines
502 B
Bash
Executable File
23 lines
502 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
set -o pipefail
|
|
|
|
trap 'rm -f out' EXIT
|
|
|
|
ansible-playbook main.yml -i ../../inventory "${@}" | tee out
|
|
for i in 1 2 3; do
|
|
grep "ok: \[localhost\] => (item=$i)" out
|
|
grep "\"item\": $i" out
|
|
done
|
|
|
|
ansible-playbook main_fqcn.yml -i ../../inventory "${@}" | tee out
|
|
for i in 1 2 3; do
|
|
grep "ok: \[localhost\] => (item=$i)" out
|
|
grep "\"item\": $i" out
|
|
done
|
|
|
|
# ensure debug does not set top level vars when looking at ansible_facts
|
|
ansible-playbook nosetfacts.yml "${@}"
|