mirror of https://github.com/ansible/ansible.git
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.
19 lines
417 B
YAML
19 lines
417 B
YAML
8 years ago
|
---
|
||
|
- debug: msg="START cli/src_invalid.yaml"
|
||
|
|
||
|
|
||
|
# Defend https://github.com/ansible/ansible-modules-core/issues/4797
|
||
|
- name: configure with invalid src
|
||
|
ios_config:
|
||
|
src: basic/foobar.j2
|
||
|
register: result
|
||
|
ignore_errors: yes
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
- "result.failed == true"
|
||
|
- "result.msg == 'path specified in src not found'"
|
||
|
|
||
|
- debug: msg="END cli/src_invalid.yaml"
|