2016-10-28 20:50:29 +02:00
|
|
|
---
|
2018-05-18 00:47:15 +02:00
|
|
|
- debug: msg="START common/contains.yaml on connection={{ ansible_connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: test contains operator
|
|
|
|
nxos_command:
|
|
|
|
commands:
|
2018-07-03 16:15:19 +02:00
|
|
|
- { command: 'show version', output: 'text' }
|
|
|
|
- { command: 'show interface mgmt0', output: 'json' }
|
2016-10-28 20:50:29 +02:00
|
|
|
wait_for:
|
|
|
|
- "result[0] contains NX-OS"
|
|
|
|
- "result[1].TABLE_interface.ROW_interface.interface contains mgmt"
|
2018-07-02 15:43:51 +02:00
|
|
|
provider: "{{ connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
2018-05-18 00:47:15 +02:00
|
|
|
- debug: msg="END common/contains.yaml on connection={{ ansible_connection }}"
|