2016-10-28 20:50:29 +02:00
|
|
|
---
|
2018-01-08 13:28:47 +01:00
|
|
|
- debug: msg="START netconf_xml/lessthan.yaml on connection={{ ansible_connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: test lt operator
|
|
|
|
junos_command:
|
|
|
|
commands:
|
|
|
|
- show version
|
2017-08-04 17:18:57 +02:00
|
|
|
- show interfaces lo0
|
2016-10-28 20:50:29 +02:00
|
|
|
format: xml
|
|
|
|
wait_for:
|
2017-08-04 17:18:57 +02:00
|
|
|
- "result[1].rpc-reply.interface-information.physical-interface.local-index lt 7"
|
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 17:18:57 +02:00
|
|
|
- show interfaces lo0
|
2016-10-28 20:50:29 +02:00
|
|
|
format: xml
|
|
|
|
wait_for:
|
2017-08-04 17:56:41 +02:00
|
|
|
- "result[1].rpc-reply.interface-information.physical-interface.local-index lt 7"
|
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/lessthan.yaml on connection={{ ansible_connection }}"
|