513c75079e
* Add eos and fix tests to run multiple connections * Update tests to report connection * Add missing START messages * Fix unspecified connection * Python 3 updates Exceptions don't have `.message` in Python 3 * Override `become` when using `connection=local` * Slight restructuring to make eapi easier later on * Move eapi toggle to prepare_eos * Pull out connection on eapi tasks
28 lines
626 B
YAML
28 lines
626 B
YAML
---
|
|
- debug: msg="START cli/output.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: get output for single command
|
|
eos_command:
|
|
commands: ['show version']
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
- "result.stdout is defined"
|
|
|
|
- name: get output for multiple commands
|
|
eos_command:
|
|
commands:
|
|
- show version
|
|
- show interfaces
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
- "result.stdout is defined"
|
|
|
|
- debug: msg="END cli/output.yaml on connection={{ ansible_connection }}"
|