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

18 lines
405 B
YAML
Raw Normal View History

- hosts: localhost
gather_facts: false
vars:
- data: {}
tasks:
- block:
- name: template error
debug:
msg: "{{ data.value }}"
rescue:
- debug:
msg: "{{ ansible_failed_task.action }}"
- assert:
that:
- ansible_failed_task.name == "template error"
- ansible_failed_task.action == "debug"