--- - debug: msg="START nxapi/notequal.yaml" - name: test neq operator nxos_command: commands: - show version - show interface mgmt0 wait_for: - "result[1].TABLE_interface.ROW_interface.state neq down" provider: "{{ nxapi }}" register: result - assert: that: - "result.changed == false" - "result.stdout is defined" - name: test != operator nxos_command: commands: - show version - show interface mgmt0 wait_for: - "result[1].TABLE_interface.ROW_interface.state != down" provider: "{{ nxapi }}" register: result - assert: that: - "result.changed == false" - "result.stdout is defined" - debug: msg="START nxapi/notequal.yaml"