c3635532d3
This looks to be causing issues for our new ansible.netcommon
collection. Revert for now, until we can properly address.
This reverts commit 53c7f8cbde
.
28 lines
571 B
YAML
28 lines
571 B
YAML
---
|
|
- include_tasks: reset_config.yml
|
|
|
|
- eos_facts:
|
|
gather_network_resources: lldp_global
|
|
become: yes
|
|
|
|
- name: Returns LLDP configuration to default parameters
|
|
eos_lldp_global:
|
|
state: deleted
|
|
register: result
|
|
become: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "ansible_facts.network_resources.lldp_global == result.before"
|
|
|
|
- eos_facts:
|
|
gather_network_resources: lldp_global
|
|
become: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "ansible_facts.network_resources.lldp_global == result.after"
|
|
|
|
- assert:
|
|
that:
|
|
- "ansible_facts.network_resources.lldp_global == {}"
|