e9d7fa0418
* HTTPAPI connection * Punt run_commands to cliconf or httpapi * Fake enable_mode on eapi * Pull changes to nxos * Move load_config to edit_config for future-preparedness * Don't fail on lldp disabled * Re-enable check_rc on nxos' run_commands * Reorganize nxos httpapi plugin for compatibility * draft docs for connection: httpapi * restores docs for connection:local for eapi * Add _remote_is_local to httpapi
35 lines
627 B
YAML
35 lines
627 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:
|
|
save_when: always
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: save always again (not idempotent)
|
|
eos_config:
|
|
save_when: always
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- debug: msg="END cli/save.yaml on connection={{ ansible_connection }}"
|