mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
678 B
YAML
30 lines
678 B
YAML
2 years ago
|
- name: "Test rescue/always sections with includes in a loop, strategy={{ strategy }}"
|
||
|
hosts: localhost
|
||
|
gather_facts: false
|
||
|
strategy: "{{ strategy }}"
|
||
|
tasks:
|
||
|
- block:
|
||
|
- include_role:
|
||
|
name: "{{ item }}"
|
||
|
loop:
|
||
|
- a
|
||
|
- b
|
||
|
rescue:
|
||
|
- debug:
|
||
|
msg: rescue include_role in a loop
|
||
|
always:
|
||
|
- debug:
|
||
|
msg: always include_role in a loop
|
||
|
|
||
|
- block:
|
||
|
- include_tasks: "{{ item }}"
|
||
|
loop:
|
||
|
- a
|
||
|
- b
|
||
|
rescue:
|
||
|
- debug:
|
||
|
msg: rescue include_tasks in a loop
|
||
|
always:
|
||
|
- debug:
|
||
|
msg: always include_tasks in a loop
|