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.
37 lines
874 B
YAML
37 lines
874 B
YAML
5 years ago
|
---
|
||
|
- include_tasks: reset_config.yml
|
||
|
|
||
|
- set_fact:
|
||
|
config:
|
||
|
- name: "Port-Channel10"
|
||
|
members:
|
||
|
- member: Ethernet2
|
||
|
mode: "on"
|
||
|
|
||
|
- eos_facts:
|
||
|
gather_network_resources: lag_interfaces
|
||
|
become: yes
|
||
|
|
||
|
- name: Override device configuration of all LAGs on device with provided configuration.
|
||
|
eos_lag_interfaces:
|
||
|
config: "{{ config }}"
|
||
|
state: overridden
|
||
|
become: yes
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "ansible_facts.network_resources.lag_interfaces|symmetric_difference(result.before)|length == 0"
|
||
|
|
||
|
- eos_facts:
|
||
|
gather_network_resources: lag_interfaces
|
||
|
become: yes
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "ansible_facts.network_resources.lag_interfaces|symmetric_difference(result.after)|length == 0"
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "ansible_facts.network_resources.lag_interfaces|symmetric_difference(config)|length == 0"
|