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
48 lines
1 KiB
YAML
48 lines
1 KiB
YAML
---
|
|
- debug: msg="START cli/toplevel_after.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: setup
|
|
eos_config:
|
|
lines:
|
|
- snmp-server contact ansible
|
|
- hostname veos01
|
|
match: none
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
|
|
- name: configure top level command with before
|
|
eos_config:
|
|
lines: hostname foo
|
|
after: snmp-server contact bar
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'hostname foo' in result.updates"
|
|
- "'snmp-server contact bar' in result.updates"
|
|
|
|
- name: configure top level command with before idempotent check
|
|
eos_config:
|
|
lines: hostname foo
|
|
after: snmp-server contact foo
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: teardown
|
|
eos_config:
|
|
lines:
|
|
- no snmp-server contact
|
|
- hostname veos01
|
|
match: none
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
|
|
- debug: msg="END cli/toplevel_after.yaml on connection={{ ansible_connection }}"
|