af3603f9ee
While this does properly pass our testing for ansible/ansible devel
branch, it is currently breaking our collection testing for 2.10.
Specifically, this would mean ansible.netcommon would need to directly
import arista.eos or cisco.nxos collections, causing a circular dependency.
This reverts commit e266e5f8b6
.
29 lines
607 B
YAML
29 lines
607 B
YAML
---
|
|
- include_tasks: reset_config.yml
|
|
|
|
- set_fact:
|
|
config:
|
|
- name: "Port-Channel5"
|
|
|
|
- eos_facts:
|
|
gather_network_resources: lag_interfaces
|
|
become: yes
|
|
|
|
- name: Delete EOS L3 interfaces as in given arguments.
|
|
eos_lag_interfaces:
|
|
config: "{{ config }}"
|
|
state: deleted
|
|
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 == []"
|