2016-10-12 14:57:53 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -eux
|
|
|
|
|
2020-05-20 18:53:37 -04:00
|
|
|
#ANSIBLE_CACHE_PLUGINS=cache_plugins/ ANSIBLE_CACHE_PLUGIN=none ansible-playbook test_gathering_facts.yml -i inventory -v "$@"
|
2020-07-13 18:52:56 -05:00
|
|
|
ansible-playbook test_gathering_facts.yml -i inventory -e output_dir="$OUTPUT_DIR" -v "$@"
|
2020-05-20 18:53:37 -04:00
|
|
|
#ANSIBLE_CACHE_PLUGIN=base ansible-playbook test_gathering_facts.yml -i inventory -v "$@"
|
2018-05-04 21:33:32 +02:00
|
|
|
|
2019-01-10 14:45:12 -08:00
|
|
|
ANSIBLE_GATHERING=smart ansible-playbook test_run_once.yml -i inventory -v "$@"
|
2020-03-24 15:46:56 -04:00
|
|
|
|
|
|
|
# ensure clean_facts is working properly
|
|
|
|
ansible-playbook test_prevent_injection.yml -i inventory -v "$@"
|
2020-05-20 18:53:37 -04:00
|
|
|
|
|
|
|
# ensure fact merging is working properly
|
|
|
|
ansible-playbook verify_merge_facts.yml -v "$@" -e 'ansible_facts_parallel: False'
|
2020-08-04 15:41:42 -04:00
|
|
|
|
|
|
|
# ensure we dont clobber facts in loop
|
|
|
|
ansible-playbook prevent_clobbering.yml -v "$@"
|