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.
ansible/test/integration/targets/eos_lag_interfaces/tests/cli/reset_config.yml

26 lines
546 B
YAML

---
- name: Reset state
cli_config:
config: |
interface Ethernet1
channel-group 5 mode on
interface Ethernet2
no channel-group
no interface Port-Channel10
become: yes
- eos_facts:
gather_network_resources: lag_interfaces
become: yes
- set_fact:
expected_config:
- name: "Port-Channel5"
members:
- member: Ethernet1
mode: "on"
- assert:
that:
- "ansible_facts.network_resources.lag_interfaces|symmetric_difference(expected_config)|length == 0"