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.
41 lines
959 B
YAML
41 lines
959 B
YAML
5 years ago
|
---
|
||
|
- include_tasks: reset_config.yml
|
||
|
|
||
|
- set_fact:
|
||
|
config:
|
||
|
- name: Ethernet1
|
||
|
transmit: False
|
||
|
other_config:
|
||
|
- name: Ethernet2
|
||
|
transmit: False
|
||
|
|
||
|
- eos_facts:
|
||
|
gather_network_resources: lldp_interfaces
|
||
|
become: yes
|
||
|
|
||
|
- name: Replace existing LLDP configuration of specified interfaces with provided configuration
|
||
|
eos_lldp_interfaces:
|
||
|
config: "{{ config }}"
|
||
|
state: replaced
|
||
|
register: result
|
||
|
become: yes
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "ansible_facts.network_resources.lldp_interfaces|symmetric_difference(result.before) == []"
|
||
|
|
||
|
- eos_facts:
|
||
|
gather_network_resources: lldp_interfaces
|
||
|
become: yes
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "ansible_facts.network_resources.lldp_interfaces|symmetric_difference(result.after) == []"
|
||
|
|
||
|
- set_fact:
|
||
|
expected_config: "{{ config }} + {{ other_config }}"
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "expected_config|symmetric_difference(ansible_facts.network_resources.lldp_interfaces) == []"
|