2016-10-28 20:50:29 +02:00
|
|
|
---
|
|
|
|
- debug: msg="START cli/output.yaml"
|
|
|
|
|
|
|
|
- name: get output for single command
|
|
|
|
vyos_command:
|
|
|
|
commands: show version
|
|
|
|
provider: "{{ cli }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- result.changed == false
|
|
|
|
- result.stdout is defined
|
|
|
|
- result.stdout_lines is defined
|
|
|
|
|
|
|
|
- name: get output for multiple commands
|
|
|
|
vyos_command:
|
|
|
|
commands:
|
|
|
|
- show version
|
|
|
|
- show interfaces
|
|
|
|
provider: "{{ cli }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- result.changed == false
|
|
|
|
- result.stdout is defined
|
|
|
|
- result.stdout | length == 2
|
|
|
|
|
2016-11-21 16:46:46 +01:00
|
|
|
- name: Get output for multiple commands that call less explicitly
|
|
|
|
vyos_command:
|
|
|
|
commands:
|
|
|
|
- show hardware cpu detail
|
|
|
|
- show hardware mem
|
|
|
|
- show license
|
|
|
|
- show log
|
|
|
|
- show log all
|
|
|
|
- show log authorization
|
|
|
|
- show system boot-messages
|
|
|
|
provider: "{{ cli }}"
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- result.changed == false
|
|
|
|
- result.stdout_lines is defined
|
|
|
|
- result.stdout_lines[2] | length >= 20
|
|
|
|
|
2016-10-28 20:50:29 +02:00
|
|
|
- debug: msg="END cli/output.yaml"
|