2016-10-28 20:50:29 +02:00
|
|
|
---
|
|
|
|
- debug: msg="START cli/defaults.yaml"
|
|
|
|
|
|
|
|
- name: setup
|
|
|
|
ios_config:
|
|
|
|
commands:
|
|
|
|
- no description
|
|
|
|
- shutdown
|
|
|
|
parents:
|
|
|
|
- interface Loopback999
|
|
|
|
match: none
|
2017-09-28 11:53:52 +02:00
|
|
|
authorize: yes
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: configure device with defaults included
|
|
|
|
ios_config:
|
|
|
|
src: defaults/config.j2
|
|
|
|
defaults: yes
|
2017-09-28 11:53:52 +02:00
|
|
|
authorize: yes
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- debug: var=result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
2017-01-20 21:18:12 +01:00
|
|
|
# FIXME Bug https://github.com/ansible/ansible/issues/19382
|
|
|
|
# - "result.updates is not defined"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: check device with defaults included
|
|
|
|
ios_config:
|
|
|
|
src: defaults/config.j2
|
|
|
|
defaults: yes
|
2017-09-28 11:53:52 +02:00
|
|
|
authorize: yes
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- debug: var=result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
- "result.updates is not defined"
|
|
|
|
|
2017-11-01 15:08:19 +01:00
|
|
|
- name: Check device is in proper prompt after error
|
|
|
|
ios_config:
|
|
|
|
lines:
|
|
|
|
- mac-address-table notification mac-move
|
|
|
|
authorize: yes
|
|
|
|
ignore_errors: yes
|
|
|
|
|
|
|
|
- name: show interfaces brief to ensure deivce goes to valid prompt
|
|
|
|
ios_command:
|
|
|
|
commands:
|
|
|
|
- show interfaces
|
|
|
|
authorize: yes
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
- "result.stdout is defined"
|
|
|
|
|
2016-10-28 20:50:29 +02:00
|
|
|
- debug: msg="END cli/defaults.yaml"
|