mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
22 lines
347 B
YAML
22 lines
347 B
YAML
|
- hosts: testhost
|
||
|
gather_facts: no
|
||
|
tasks:
|
||
|
- fail:
|
||
|
ignore_errors: yes
|
||
|
register: fail_out
|
||
|
|
||
|
- debug:
|
||
|
msg: fail works ({{ fail_out.failed }})
|
||
|
|
||
|
- assert:
|
||
|
that: false
|
||
|
ignore_errors: yes
|
||
|
register: assert_out
|
||
|
|
||
|
- debug:
|
||
|
msg: assert works ({{ assert_out.failed }})
|
||
|
|
||
|
- fail:
|
||
|
msg: fail actually failed
|
||
|
|