mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
8743e6ae2e
* remove default from delegate_facts to inherit fixes #45456 * test delegate_facts * added note about inheritance and defaults * yamllint
14 lines
443 B
Bash
Executable file
14 lines
443 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
ANSIBLE_SSH_ARGS='-C -o ControlMaster=auto -o ControlPersist=60s -o UserKnownHostsFile=/dev/null' \
|
|
ANSIBLE_HOST_KEY_CHECKING=false ansible-playbook test_delegate_to.yml -i ../../inventory -v "$@"
|
|
|
|
ansible-playbook test_loop_control.yml -v "$@"
|
|
|
|
ansible-playbook test_delegate_to_loop_randomness.yml -v "$@"
|
|
|
|
ansible-playbook delegate_and_nolog.yml -v "$@"
|
|
|
|
ansible-playbook delegate_facts_block.yml -v "$@"
|