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.
ansible/test/integration/targets/includes/includes_loop_rescue.yml

30 lines
678 B
YAML

- 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