da60525610
* Make sure hard-coded action names also check for FQCN. * Use _add_internal_fqcn() to avoid hardcoded lists and typoes.
17 lines
358 B
Bash
Executable file
17 lines
358 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
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
|