805d13f287
* fix nxos_portchannel and remove deprecated param in test Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * fix _nxos_switchport CI failures Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * fix nxapi nxos_command test Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * remove unsupported param nxos_smoke test Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * fix nxos_vxlan_vtep_vni Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * syntax error Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
18 lines
481 B
YAML
18 lines
481 B
YAML
---
|
|
- debug: msg="START common/contains.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: test contains operator
|
|
nxos_command:
|
|
commands:
|
|
- show version
|
|
- show interface mgmt0 | json
|
|
wait_for:
|
|
- "result[0] contains NX-OS"
|
|
- "result[1].TABLE_interface.ROW_interface.interface contains mgmt"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- debug: msg="END common/contains.yaml on connection={{ ansible_connection }}"
|