20 lines
569 B
YAML
20 lines
569 B
YAML
---
|
|
- debug: msg="START common/contains.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: test contains operator
|
|
nxos_command:
|
|
commands:
|
|
- { command: 'show version', output: 'text' }
|
|
- { command: 'show interface mgmt0', output: 'json' }
|
|
wait_for:
|
|
- "result[0] contains NX-OS"
|
|
- "result[1].TABLE_interface.ROW_interface.interface contains mgmt"
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- debug: msg="END common/contains.yaml on connection={{ ansible_connection }}"
|