mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-03 20:02:45 +00:00
* refactor nxos_evpn_global * refactor nxos_evpn_vni * refactor nxos_facts * refactor nxos_feature
16 lines
326 B
YAML
16 lines
326 B
YAML
---
|
|
- debug: msg="START {{ connection.transport }}/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.transport }}/invalid.yaml"
|