Fix junos_command netconf_json lessthanorequal (#27808)
This commit is contained in:
parent
0e4cbb4bf1
commit
99e92f4bca
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
|||
- show interfaces lo0
|
||||
format: json
|
||||
wait_for:
|
||||
- "result[1]['interface-information'][0]['physical-interface'][0]['mtu'][0]['local-index'] le 6"
|
||||
- "result[1]['interface-information'][0]['physical-interface'][0]['local-index'][0] le 6"
|
||||
provider: "{{ netconf }}"
|
||||
register: result
|
||||
|
||||
|
@ -25,7 +25,7 @@
|
|||
- show interfaces lo0
|
||||
format: json
|
||||
wait_for:
|
||||
- "result[1]['interface-information'][0]['physical-interface'][0]['mtu'][0]['local-index'] <= 6"
|
||||
- "result[1]['interface-information'][0]['physical-interface'][0]['local-index'][0] <= 6"
|
||||
provider: "{{ netconf }}"
|
||||
register: result
|
||||
|
||||
|
|
Loading…
Reference in a new issue