ansible/test/integration/targets/nxos_config/tests/nxapi/save.yaml

36 lines
567 B
YAML
Raw Normal View History

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