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

33 lines
584 B
YAML

---
- debug: msg="START cli/save.yaml on connection={{ ansible_connection }}"
- name: setup
eos_config:
commands:
- no description
- no shutdown
parents:
- interface Ethernet2
match: none
become: yes
- name: save config always
eos_config: &always
save_when: always
become: yes
register: result
- assert: &changed
that:
- "result.changed == true"
- name: save should always run
eos_config: *always
become: yes
register: result
- assert: *changed
- debug: msg="END cli/save.yaml on connection={{ ansible_connection }}"