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.
|
|
|
---
|
|
|
|
- debug: msg="START common/notequal.yaml on connection={{ ansible_connection }}"
|
|
|
|
|
|
|
|
- name: test neq operator
|
|
|
|
nxos_command:
|
|
|
|
commands:
|
|
|
|
- show version
|
|
|
|
- show interface mgmt0 | json
|
|
|
|
wait_for:
|
|
|
|
- "result[1].TABLE_interface.ROW_interface.state neq down"
|
|
|
|
provider: "{{ connection }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
- "result.stdout is defined"
|
|
|
|
|
|
|
|
- name: test != operator
|
|
|
|
nxos_command:
|
|
|
|
commands:
|
|
|
|
- show version
|
|
|
|
- show interface mgmt0 | json
|
|
|
|
wait_for:
|
|
|
|
- "result[1].TABLE_interface.ROW_interface.state != down"
|
|
|
|
provider: "{{ connection }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
- "result.stdout is defined"
|
|
|
|
|
|
|
|
- debug: msg="END common/notequal.yaml on connection={{ ansible_connection }}"
|