don't assume all delegation subkeys exist (#43032)

* don't assume all delegation subkeys exist

fixes #43026

* add tests
This commit is contained in:
Brian Coca
2018-07-24 08:54:58 -04:00
committed by GitHub
parent bf544c2200
commit cdc762dd9e
3 changed files with 12 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
- hosts: testhost
gather_facts: false
tasks:
- name: no log filtering caused delegation to fail https://github.com/ansible/ansible/issues/43026
become: False
no_log: true
debug:
delegate_to: localhost

View File

@@ -8,3 +8,5 @@ ANSIBLE_SSH_ARGS='-C -o ControlMaster=auto -o ControlPersist=60s -o UserKnownHos
ansible-playbook test_loop_control.yml -v "$@"
ansible-playbook test_delegate_to_loop_randomness.yml -v "$@"
ansible-playbook delegate_and_nolog.yml -v "$@"