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.
20 lines
324 B
YAML
20 lines
324 B
YAML
5 years ago
|
---
|
||
|
- name: Reset initial config
|
||
|
cli_config:
|
||
|
config: |
|
||
|
lacp system-priority 10
|
||
|
become: yes
|
||
|
|
||
|
- eos_facts:
|
||
|
gather_network_resources: lacp
|
||
|
become: yes
|
||
|
|
||
|
- set_fact:
|
||
|
expected_config:
|
||
|
system:
|
||
|
priority: 10
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "expected_config == ansible_facts.network_resources.lacp"
|