20f93816d6
* Return the expected prompt character based on become status * Update eos_banner tests for eapi * Update eos_config tests for eapi * Update eos_facts tests for eapi * Update eos_interface tests for eapi * Update eos_l3_interface tests for eapi * Update eos_lldp tests for eapi * Update eos_logging tests for eapi * Update eos_smoke tests for eapi * Update eos_system tests for eapi
32 lines
584 B
YAML
32 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 }}"
|