2016-10-28 20:50:29 +02:00
|
|
|
---
|
|
|
|
- debug: msg="START eapi/defaults.yaml"
|
|
|
|
|
|
|
|
- name: setup
|
|
|
|
eos_config:
|
|
|
|
commands:
|
|
|
|
- no description
|
|
|
|
- shutdown
|
|
|
|
parents:
|
2017-07-12 09:25:26 +02:00
|
|
|
- interface Ethernet2
|
2016-10-28 20:50:29 +02:00
|
|
|
match: none
|
|
|
|
|
|
|
|
- name: configure device with defaults included
|
|
|
|
eos_config:
|
|
|
|
src: defaults/config.j2
|
|
|
|
defaults: yes
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- debug: var=result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
2017-02-25 22:40:13 +01:00
|
|
|
- "result.updates is defined"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: check device with defaults included
|
|
|
|
eos_config:
|
|
|
|
src: defaults/config.j2
|
|
|
|
defaults: yes
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- debug: var=result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
- "result.updates is not defined"
|
|
|
|
|
|
|
|
- debug: msg="END eapi/defaults.yaml"
|