mirror of
https://github.com/ansible/ansible.git
synced 2026-07-30 16:14:40 +02:00
9 lines
159 B
YAML
9 lines
159 B
YAML
- name: test delegated async
|
|
hosts: testhost
|
|
gather_facts: false
|
|
tasks:
|
|
- command: sleep 3
|
|
delegate_to: testhost2
|
|
async: 5
|
|
poll: 1
|