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_config/tests/eapi/save.yaml

36 lines
571 B
YAML

---
- debug: msg="START eapi/save.yaml"
- name: setup
eos_config:
commands:
- no description
- no shutdown
parents:
- interface Ethernet2
match: none
provider: "{{ eapi }}"
- name: save config
eos_config:
save_when: always
provider: "{{ eapi }}"
register: result
- assert:
that:
- "result.changed == true"
- name: save should always run
eos_config:
save_when: always
provider: "{{ eapi }}"
register: result
- assert:
that:
- "result.changed == true"
- debug: msg="END eapi/save.yaml"