a197125954
* Quick and dirty sed to add provider * Manually verify the rest of the cases * Add missing provider
15 lines
344 B
YAML
15 lines
344 B
YAML
---
|
|
- debug: msg="START connection={{ ansible_connection }}/invalid.yaml"
|
|
|
|
- name: configure invalid feature name
|
|
nxos_feature:
|
|
feature: invalid
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- result.failed == true
|
|
|
|
- debug: msg="END connection={{ ansible_connection }}/invalid.yaml"
|