2016-10-28 20:50:29 +02:00
|
|
|
---
|
2017-08-21 17:15:25 +02:00
|
|
|
- debug: msg="START {{ connection.transport }}/save.yaml"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: setup
|
|
|
|
nxos_config:
|
|
|
|
commands:
|
|
|
|
- no description
|
|
|
|
- no shutdown
|
|
|
|
parents:
|
|
|
|
- interface Ethernet2/5
|
|
|
|
match: none
|
2017-08-21 17:15:25 +02:00
|
|
|
provider: "{{ connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
- name: save config
|
|
|
|
nxos_config:
|
|
|
|
save: true
|
2017-08-21 17:15:25 +02:00
|
|
|
provider: "{{ connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
|
|
|
|
- name: save should always run
|
|
|
|
nxos_config:
|
|
|
|
save: true
|
2017-08-21 17:15:25 +02:00
|
|
|
provider: "{{ connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
|
2017-08-21 17:15:25 +02:00
|
|
|
- debug: msg="END {{ connection.transport }}/save.yaml"
|