9 lines
157 B
YAML
9 lines
157 B
YAML
|
- hosts: testhost
|
||
|
gather_facts: no
|
||
|
tasks:
|
||
|
- command: ls
|
||
|
delegate_to: "{{ item }}"
|
||
|
with_items:
|
||
|
- localhost
|
||
|
- "{{ inventory_hostname }}"
|