2016-10-28 20:50:29 +02:00
|
|
|
---
|
2018-01-08 13:28:47 +01:00
|
|
|
- debug: msg="START netconf_xml/notequal.yaml on connection={{ ansible_connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: test neq operator
|
|
|
|
junos_command:
|
|
|
|
commands:
|
|
|
|
- show version
|
2017-08-04 14:46:59 +02:00
|
|
|
- show interfaces lo0
|
2016-10-28 20:50:29 +02:00
|
|
|
format: xml
|
|
|
|
wait_for:
|
2017-08-05 17:49:48 +02:00
|
|
|
- "result[1].rpc-reply.interface-information.physical-interface.name neq em0"
|
2016-10-28 20:50:29 +02:00
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
- "result.stdout is defined"
|
|
|
|
- "result.stdout_lines is defined"
|
|
|
|
|
|
|
|
- name: test != operator
|
|
|
|
junos_command:
|
|
|
|
commands:
|
|
|
|
- show version
|
2017-08-04 14:46:59 +02:00
|
|
|
- show interfaces lo0
|
2016-10-28 20:50:29 +02:00
|
|
|
format: xml
|
|
|
|
wait_for:
|
2017-08-05 17:49:48 +02:00
|
|
|
- "result[1].rpc-reply.interface-information.physical-interface.name neq em0"
|
2016-10-28 20:50:29 +02:00
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
- "result.stdout is defined"
|
|
|
|
- "result.stdout_lines is defined"
|
|
|
|
|
2018-01-08 13:28:47 +01:00
|
|
|
- debug: msg="END netconf_xml/notequal.yaml on connection={{ ansible_connection }}"
|