b793f08a92
function changed to do in place replacement, should be less expensive even with copy as it avoids 'sub copies', can compose with module_args_copy to create replacement for old behavior attempt to fix #52910 * handle lists and subdicts correctly * added missing exception case, which was not noticed since 'cleaning' was not working * added comments to clarify exceptions
17 lines
632 B
Bash
Executable file
17 lines
632 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 "$@"
|
|
|
|
# this test is not doing what it says it does, also relies on var that should not be available
|
|
#ansible-playbook test_loop_control.yml -v "$@"
|
|
|
|
ansible-playbook test_delegate_to_loop_randomness.yml -v "$@"
|
|
|
|
ansible-playbook delegate_and_nolog.yml -i inventory -v "$@"
|
|
|
|
ansible-playbook delegate_facts_block.yml -i inventory -v "$@"
|
|
|
|
ansible-playbook test_delegate_to_loop_caching.yml -i inventory -v "$@"
|