mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
4006b5d18f
In our CI, we only have 3 NICS: Management1, Ethernet1 and Ethernet2.
35 lines
552 B
YAML
35 lines
552 B
YAML
---
|
|
- debug: msg="START cli/save.yaml"
|
|
|
|
- name: setup
|
|
eos_config:
|
|
commands:
|
|
- no description
|
|
- no shutdown
|
|
parents:
|
|
- interface Ethernet2
|
|
match: none
|
|
provider: "{{ cli }}"
|
|
|
|
|
|
- name: save config
|
|
eos_config:
|
|
save: true
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: save should always run
|
|
eos_config:
|
|
save: true
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- debug: msg="END cli/save.yaml"
|