mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
23 lines
513 B
YAML
23 lines
513 B
YAML
|
---
|
||
|
- debug: msg="START netconf_text/contains.yaml"
|
||
|
|
||
|
- name: test contains operator with text encoding
|
||
|
junos_command:
|
||
|
commands:
|
||
|
- show version
|
||
|
- show interfaces fxp0
|
||
|
display: text
|
||
|
wait_for:
|
||
|
- "result[0] contains vsrx01"
|
||
|
- "result[1] contains fxp0"
|
||
|
provider: "{{ netconf }}"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
- "result.stdout is defined"
|
||
|
- "result.stdout_lines is defined"
|
||
|
|
||
|
- debug: msg="END netconf_text/contains.yaml"
|