mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.0 KiB
YAML
42 lines
1.0 KiB
YAML
---
|
|
- include_tasks: reset_config.yml
|
|
|
|
- set_fact:
|
|
config:
|
|
- name: Ethernet1
|
|
trunk:
|
|
native_vlan: 20
|
|
trunk_allowed_vlans:
|
|
- 5-10
|
|
- "15"
|
|
|
|
- eos_facts:
|
|
gather_network_resources: l2_interfaces
|
|
become: yes
|
|
|
|
- name: Replace device configuration of specified L2 interfaces with provided configuration.
|
|
eos_l2_interfaces:
|
|
config: "{{ config }}"
|
|
state: replaced
|
|
register: result
|
|
become: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "ansible_facts.network_resources.l2_interfaces|symmetric_difference(result.before) == []"
|
|
|
|
- eos_facts:
|
|
gather_network_resources: l2_interfaces
|
|
become: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "ansible_facts.network_resources.l2_interfaces|symmetric_difference(result.after) == []"
|
|
|
|
- set_fact:
|
|
expected_config: "{{ config }} + [{'name': 'Ethernet2', 'trunk': {'native_vlan': 20}}, {'name': 'Management1'}]"
|
|
|
|
- assert:
|
|
that:
|
|
- "ansible_facts.network_resources.l2_interfaces|symmetric_difference(expected_config) == []"
|