mirror of https://github.com/ansible/ansible.git
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.
33 lines
670 B
YAML
33 lines
670 B
YAML
8 years ago
|
---
|
||
|
- debug: msg="START cli/lessthan.yaml"
|
||
|
|
||
|
- name: test lt operator
|
||
|
nxos_command:
|
||
|
commands:
|
||
|
- show version
|
||
|
- show interface mgmt0 | json
|
||
|
wait_for:
|
||
|
- "result[1].TABLE_interface.ROW_interface.eth_ip_mask lt 33"
|
||
|
provider: "{{ cli }}"
|
||
|
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 lt 33"
|
||
|
provider: "{{ cli }}"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
|
||
|
- debug: msg="END cli/lessthan.yaml"
|