2016-10-28 20:50:29 +02:00
|
|
|
---
|
2018-01-08 13:28:47 +01:00
|
|
|
- debug: msg="START netconf_text/output.yaml on connection={{ ansible_connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: get output for single command
|
|
|
|
junos_command:
|
|
|
|
commands: show version
|
|
|
|
display: text
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
- "result.stdout is defined"
|
|
|
|
- "result.stdout_lines is defined"
|
|
|
|
|
|
|
|
- name: get output for multiple commands
|
|
|
|
junos_command:
|
|
|
|
commands:
|
|
|
|
- show version
|
|
|
|
- show route
|
|
|
|
display: text
|
|
|
|
provider: "{{ netconf }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
- "result.stdout is defined"
|
|
|
|
- "result.stdout_lines is defined"
|
|
|
|
|
2017-11-24 07:34:47 +01:00
|
|
|
- name: get output for single command with cli transport
|
|
|
|
junos_command:
|
|
|
|
commands: show version
|
|
|
|
display: text
|
|
|
|
provider:
|
|
|
|
transport: cli
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
- "result.stdout is defined"
|
|
|
|
- "result.stdout_lines is defined"
|
|
|
|
|
|
|
|
- name: get output for multiple commands with cli transport
|
|
|
|
junos_command:
|
|
|
|
commands:
|
|
|
|
- show version
|
|
|
|
- show route
|
|
|
|
display: text
|
|
|
|
provider:
|
|
|
|
transport: cli
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
- "result.stdout is defined"
|
|
|
|
- "result.stdout_lines is defined"
|
|
|
|
|
2018-01-08 13:28:47 +01:00
|
|
|
- debug: msg="END netconf_text/output.yaml on connection={{ ansible_connection }}"
|