Fix junos_command netconf_xml notequal asserts (#27806)

This commit is contained in:
Ricardo Carrillo Cruz 2017-08-05 17:49:48 +02:00 committed by GitHub
parent b51a1e9045
commit 6a6bcb6749

View file

@ -8,7 +8,7 @@
- show interfaces lo0
format: xml
wait_for:
- "result[0].rpc-reply.software-information.host-name neq localhost"
- "result[1].rpc-reply.interface-information.physical-interface.name neq em0"
provider: "{{ netconf }}"
register: result
@ -25,7 +25,7 @@
- show interfaces lo0
format: xml
wait_for:
- "result[0].rpc-reply.software-information.host-name != localhost"
- "result[1].rpc-reply.interface-information.physical-interface.name neq em0"
provider: "{{ netconf }}"
register: result