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/cli/save.yaml

36 lines
585 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 always
eos_config:
save_when: always
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == true"
- name: save always again (not idempotent)
eos_config:
save_when: always
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == true"
- debug: msg="END cli/save.yaml"