mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
a197125954
* Quick and dirty sed to add provider * Manually verify the rest of the cases * Add missing provider
32 lines
771 B
YAML
32 lines
771 B
YAML
---
|
|
- debug: msg="START common/greaterthan.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: test gt operator
|
|
nxos_command:
|
|
commands:
|
|
- show version
|
|
- show interface mgmt0 | json
|
|
wait_for:
|
|
- "result[1].TABLE_interface.ROW_interface.eth_ip_mask gt 0"
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: test > operator
|
|
nxos_command:
|
|
commands:
|
|
- show version
|
|
- show interface mgmt0 | json
|
|
wait_for:
|
|
- "result[1].TABLE_interface.ROW_interface.eth_ip_mask > 0"
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- debug: msg="END common/greaterthan.yaml on connection={{ ansible_connection }}"
|