2017-08-29 15:15:04 +00:00
|
|
|
- name: Try with nonexistent path
|
|
|
|
alternatives:
|
|
|
|
name: dummy
|
|
|
|
path: '/non/existent/path/there'
|
|
|
|
link: '/usr/bin/dummy'
|
|
|
|
ignore_errors: True
|
|
|
|
register: alternative
|
|
|
|
|
|
|
|
- name: Check previous task failed
|
|
|
|
assert:
|
|
|
|
that:
|
2017-11-27 22:58:08 +00:00
|
|
|
- 'alternative is failed'
|