mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
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
45 lines
885 B
YAML
45 lines
885 B
YAML
---
|
|
- debug: msg="START cli/sublevel.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: setup
|
|
eos_config:
|
|
lines: no vlan 10
|
|
match: none
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
|
|
- name: configure sub level command
|
|
eos_config:
|
|
lines: name test
|
|
parents: vlan 10
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'vlan 10' in result.updates"
|
|
- "'name test' in result.updates"
|
|
|
|
- name: configure sub level command idempotent check
|
|
eos_config:
|
|
lines: name test
|
|
parents: vlan 10
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: teardown
|
|
eos_config:
|
|
lines: no vlan 10
|
|
match: none
|
|
provider: "{{ cli }}"
|
|
become: yes
|
|
|
|
|
|
- debug: msg="END cli/sublevel.yaml on connection={{ ansible_connection }}"
|