2016-10-28 20:50:29 +02:00
|
|
|
---
|
|
|
|
- debug: msg="START cli/save.yaml"
|
|
|
|
|
|
|
|
- name: setup
|
|
|
|
ios_config:
|
|
|
|
commands:
|
|
|
|
- no description
|
|
|
|
- no shutdown
|
|
|
|
parents:
|
|
|
|
- interface Loopback999
|
|
|
|
match: none
|
2017-09-14 00:00:58 +02:00
|
|
|
provider: "{{ cli }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
- name: save config
|
|
|
|
ios_config:
|
|
|
|
save: true
|
2017-09-14 00:00:58 +02:00
|
|
|
provider: "{{ cli }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
# FIXME https://github.com/ansible/ansible-modules-core/issues/5008
|
|
|
|
ignore_errors: true
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
# FIXME https://github.com/ansible/ansible-modules-core/issues/5008
|
|
|
|
ignore_errors: true
|
|
|
|
|
|
|
|
- name: save should always run
|
|
|
|
ios_config:
|
|
|
|
save: true
|
2017-09-14 00:00:58 +02:00
|
|
|
provider: "{{ cli }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
# FIXME https://github.com/ansible/ansible-modules-core/issues/5008
|
|
|
|
ignore_errors: true
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
# FIXME https://github.com/ansible/ansible-modules-core/issues/5008
|
|
|
|
ignore_errors: true
|
|
|
|
|
|
|
|
- debug: msg="END cli/save.yaml"
|