mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
907ff2f26c
* Add new meta task end_host
23 lines
900 B
Bash
Executable file
23 lines
900 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
# test end_host meta task, with when conditional
|
|
for test_strategy in linear free; do
|
|
out="$(ansible-playbook test_end_host.yml -i ../../inventory -e test_strategy=$test_strategy -vv "$@")"
|
|
|
|
grep -q "META: end_host conditional evaluated to false, continuing execution for testhost" <<< "$out"
|
|
grep -q "META: ending play for testhost2" <<< "$out"
|
|
grep -q "play not ended for testhost" <<< "$out"
|
|
grep -qv "play not ended for testhost2" <<< "$out"
|
|
done
|
|
|
|
# test end_host meta task, on all hosts
|
|
for test_strategy in linear free; do
|
|
out="$(ansible-playbook test_end_host_all.yml -i ../../inventory -e test_strategy=$test_strategy -vv "$@")"
|
|
|
|
grep -q "META: ending play for testhost" <<< "$out"
|
|
grep -q "META: ending play for testhost2" <<< "$out"
|
|
grep -qv "play not ended for testhost" <<< "$out"
|
|
grep -qv "play not ended for testhost2" <<< "$out"
|
|
done
|