mirror of https://github.com/ansible/ansible.git
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.
38 lines
726 B
YAML
38 lines
726 B
YAML
8 years ago
|
---
|
||
|
- debug: msg="START cli/defaults.yaml"
|
||
|
|
||
|
- name: setup
|
||
|
ios_config:
|
||
|
commands: no interface Loopback999
|
||
|
match: none
|
||
|
ignore_errors: yes
|
||
|
|
||
|
- name: configure device with defaults included
|
||
|
ios_template:
|
||
|
src: defaults/config.j2
|
||
|
include_defaults: yes
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == true"
|
||
|
- "result.updates is defined"
|
||
|
|
||
|
- name: check device with defaults included
|
||
|
ios_template:
|
||
|
src: defaults/config.j2
|
||
|
include_defaults: yes
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
- "result.updates is defined"
|
||
|
|
||
|
- name: teardown
|
||
|
ios_config:
|
||
|
commands: no interface Loopback999
|
||
|
match: none
|
||
|
|
||
|
- debug: msg="END cli/defaults.yaml"
|