2016-10-12 23:57:53 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -eux
|
|
|
|
|
2020-05-21 00:53:37 +02:00
|
|
|
#ANSIBLE_CACHE_PLUGINS=cache_plugins/ ANSIBLE_CACHE_PLUGIN=none ansible-playbook test_gathering_facts.yml -i inventory -v "$@"
|
2020-07-14 01:52:56 +02:00
|
|
|
ansible-playbook test_gathering_facts.yml -i inventory -e output_dir="$OUTPUT_DIR" -v "$@"
|
2020-05-21 00:53:37 +02: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 23:45:12 +01:00
|
|
|
ANSIBLE_GATHERING=smart ansible-playbook test_run_once.yml -i inventory -v "$@"
|
2020-03-24 20:46:56 +01:00
|
|
|
|
|
|
|
# ensure clean_facts is working properly
|
|
|
|
ansible-playbook test_prevent_injection.yml -i inventory -v "$@"
|
2020-05-21 00:53:37 +02:00
|
|
|
|
|
|
|
# ensure fact merging is working properly
|
|
|
|
ansible-playbook verify_merge_facts.yml -v "$@" -e 'ansible_facts_parallel: False'
|