4c9d9dbb56
* fix discovery on loop with delegation fixes #69963
8 lines
157 B
YAML
8 lines
157 B
YAML
- hosts: testhost
|
|
gather_facts: no
|
|
tasks:
|
|
- command: ls
|
|
delegate_to: "{{ item }}"
|
|
with_items:
|
|
- localhost
|
|
- "{{ inventory_hostname }}"
|