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
38 lines
705 B
YAML
38 lines
705 B
YAML
---
|
|
- debug: msg="START cli/save.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: setup
|
|
eos_config:
|
|
commands:
|
|
- no description
|
|
- no shutdown
|
|
parents:
|
|
- interface Ethernet2
|
|
match: none
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
|
|
|
|
- name: save config always
|
|
eos_config:
|
|
save_when: always
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: save always again (not idempotent)
|
|
eos_config:
|
|
save_when: always
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- debug: msg="END cli/save.yaml on connection={{ ansible_connection }}"
|