ansible/test/integration/targets/blocks/always_failure_with_rescue_rc.yml

17 lines
334 B
YAML
Raw Normal View History

- hosts: localhost
gather_facts: no
tasks:
- block:
- name: EXPECTED FAILURE
fail:
msg: Failure in block
rescue:
- debug:
msg: Rescue
always:
- name: EXPECTED FAILURE
fail:
msg: Failure in always
- debug:
msg: DID NOT RUN