mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Correct loop syntax in example (#46178)
This commit is contained in:
parent
065b7ac300
commit
4c929d3a7a
1 changed files with 1 additions and 2 deletions
|
@ -95,8 +95,7 @@ of tasks running concurrently, you can do it this way::
|
||||||
- 5
|
- 5
|
||||||
durations: "{{ item }}"
|
durations: "{{ item }}"
|
||||||
include_tasks: execute_batch.yml
|
include_tasks: execute_batch.yml
|
||||||
loop:
|
loop: "{{ sleep_durations | batch(2) | list }}"
|
||||||
- "{{ sleep_durations | batch(2) | list }}"
|
|
||||||
|
|
||||||
#####################
|
#####################
|
||||||
# execute_batch.yml
|
# execute_batch.yml
|
||||||
|
|
Loading…
Reference in a new issue