a213b9160c
* Fix extended loop_control with includes * Use assert for testing extended loop_control * fix typo
12 lines
301 B
YAML
12 lines
301 B
YAML
- name: loop_control/extended/include https://github.com/ansible/ansible/issues/61218
|
|
hosts: localhost
|
|
gather_facts: false
|
|
tasks:
|
|
- name: loop on an include
|
|
include_tasks: inner.yml
|
|
loop:
|
|
- first
|
|
- second
|
|
- third
|
|
loop_control:
|
|
extended: yes
|