examples: longer (but still crap) async_polling.yml

This commit is contained in:
David Wilson 2018-03-01 03:19:09 +05:45
parent a26e1589e2
commit 2a88b6264f
1 changed files with 11 additions and 4 deletions

View File

@ -4,7 +4,14 @@
gather_facts: false
tasks:
- name: simulate long running op (15 sec), wait for up to 45 sec, poll every 5 sec
command: /bin/sleep 10
async: 15
poll: 1
- name: simulate long running op (3 sec), wait for up to 5 sec, poll every 1 sec
command: /bin/sleep 2
async: 4
register: derp
- debug: msg={{derp}}
- async_status: jid={{derp.ansible_job_id}}
register: derp2
- debug: msg={{derp2}}