You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
---
|
|
|
|
- debug: msg="START cli/lessthanorequal.yaml on connection={{ ansible_connection }}"
|
|
|
|
|
|
|
|
- name: test le operator
|
|
|
|
eos_command:
|
|
|
|
commands:
|
|
|
|
- show version
|
|
|
|
- show interfaces Management1 | json
|
|
|
|
wait_for:
|
|
|
|
- "result[1].interfaces.Management1.mtu le 1600"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
- "result.stdout is defined"
|
|
|
|
|
|
|
|
- name: test <= operator
|
|
|
|
eos_command:
|
|
|
|
commands:
|
|
|
|
- show version
|
|
|
|
- show interfaces Management1 | json
|
|
|
|
wait_for:
|
|
|
|
- "result[1].interfaces.Management1.mtu <= 1600"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
- "result.stdout is defined"
|
|
|
|
|
|
|
|
- debug: msg="END cli/lessthanorequal.yaml on connection={{ ansible_connection }}"
|