File tree 2 files changed +10
-4
lines changed 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
1
* .pyc
2
+ .idea
2
3
3
4
/tower_collection_actual.yml
Original file line number Diff line number Diff line change 1
1
---
2
2
3
- - hosts : all
3
+ - name : Run Async Tasks playbooks
4
+ hosts : all
4
5
gather_facts : false
5
6
tasks :
6
7
13
14
- name : Poll a sleep
14
15
command : " sleep 10"
15
16
async : 30
16
- poll : 5
17
+ poll : 0
17
18
18
19
- debug :
19
20
msg : " I'm a debug message."
28
29
msg : " I'm another debug message."
29
30
30
31
- name : Examine slow command
31
- async_status : jid={{ fired.ansible_job_id }}
32
+ async_status :
33
+ jid : " {{ fired.ansible_job_id }}"
34
+ mode : status
32
35
register : slow_command
33
36
until : slow_command.finished
34
37
retries : 20
43
46
msg : " I'm yet another debug message."
44
47
45
48
- name : Examine slow reversal
46
- async_status : jid={{ fired.ansible_job_id }}
49
+ async_status :
50
+ jid : " {{ fired.ansible_job_id }}"
51
+ mode : status
47
52
register : slow_command
48
53
until : slow_command.finished
49
54
retries : 20
You can’t perform that action at this time.
0 commit comments