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.
43 lines
938 B
YAML
43 lines
938 B
YAML
5 years ago
|
---
|
||
|
- include_tasks: reset_config.yml
|
||
|
|
||
|
- set_fact:
|
||
|
config:
|
||
|
- name: Ethernet1
|
||
|
- name: Ethernet2
|
||
|
other_config:
|
||
|
- name: Management1
|
||
|
ipv4:
|
||
|
- address: dhcp
|
||
|
|
||
|
- eos_facts:
|
||
|
gather_network_resources: l3_interfaces
|
||
|
become: yes
|
||
|
|
||
|
- name: Delete EOS L3 interfaces as in given arguments.
|
||
|
eos_l3_interfaces:
|
||
|
config: "{{ config }}"
|
||
|
state: deleted
|
||
|
register: result
|
||
|
become: yes
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "ansible_facts.network_resources.l3_interfaces|symmetric_difference(result.before) == []"
|
||
|
|
||
|
- eos_facts:
|
||
|
gather_network_resources: l3_interfaces
|
||
|
become: yes
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "ansible_facts.network_resources.l3_interfaces|symmetric_difference(result.after) == []"
|
||
|
become: yes
|
||
|
|
||
|
- set_fact:
|
||
|
expected_config: "{{ config }} + {{ other_config }}"
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "ansible_facts.network_resources.l3_interfaces|symmetric_difference(expected_config) == []"
|