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
51 lines
1,002 B
YAML
51 lines
1,002 B
YAML
---
|
|
- debug: msg="START cli/config.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: Setup
|
|
eos_config:
|
|
lines: no management api http-commands
|
|
match: none
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
|
|
- name: Get running-config
|
|
eos_command:
|
|
commands: show running-config
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
register: config
|
|
|
|
- name: Set config
|
|
eos_eapi:
|
|
config: "{{ config.stdout[0] }}"
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
register: config
|
|
|
|
- name: Ensure that this triggered a change
|
|
assert:
|
|
that:
|
|
- "config.changed == true"
|
|
|
|
#---
|
|
- name: Get running-config again
|
|
eos_command:
|
|
commands: show running-config
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
register: config
|
|
|
|
- name: Set config
|
|
eos_eapi:
|
|
config: "{{ config.stdout[0] }}"
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
register: config
|
|
|
|
|
|
- name: Idempotency check
|
|
assert:
|
|
that:
|
|
- "config.changed == false"
|
|
|
|
- debug: msg="END cli/config.yaml on connection={{ ansible_connection }}"
|