a197125954
* Quick and dirty sed to add provider * Manually verify the rest of the cases * Add missing provider
19 lines
535 B
YAML
19 lines
535 B
YAML
---
|
|
- debug: msg="START common/src_invalid.yaml on connection={{ ansible_connection }}"
|
|
|
|
|
|
# Defend https://github.com/ansible/ansible-modules-core/issues/4797
|
|
- name: configure with invalid src
|
|
nxos_config:
|
|
src: basic/foobar.j2
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
- "result.failed == true"
|
|
- "result.msg == 'path specified in src not found'"
|
|
|
|
- debug: msg="END common/src_invalid.yaml on connection={{ ansible_connection }}"
|