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.
29 lines
571 B
YAML
29 lines
571 B
YAML
5 years ago
|
---
|
||
|
- 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 == {}"
|