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/nxos_config/tests/nxapi/save.yaml

36 lines
567 B
YAML

---
- 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"