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.
36 lines
729 B
YAML
36 lines
729 B
YAML
5 years ago
|
---
|
||
|
- name: Reset initial config
|
||
|
cli_config:
|
||
|
config: |
|
||
|
interface Ethernet1
|
||
|
description "Interface 1"
|
||
|
no shutdown
|
||
|
no mtu
|
||
|
speed forced 40gfull
|
||
|
interface Ethernet2
|
||
|
no description
|
||
|
no shutdown
|
||
|
mtu 3000
|
||
|
speed auto
|
||
|
become: yes
|
||
|
|
||
|
- eos_facts:
|
||
|
gather_network_resources: interfaces
|
||
|
become: yes
|
||
|
|
||
|
- set_fact:
|
||
|
expected_config:
|
||
|
- name: Ethernet1
|
||
|
description: Interface 1
|
||
|
speed: 40g
|
||
|
duplex: full
|
||
|
enabled: True
|
||
|
- name: Ethernet2
|
||
|
enabled: True
|
||
|
mtu: "3000"
|
||
|
duplex: auto
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "expected_config|difference(ansible_facts.network_resources.interfaces) == []"
|