a12033a6e0
* WIP * Don't set connection: network_cli in the playbook * ios_config tests now passing * Create test loopback device * delete * ios_* pass (apart from ios_facts) * Remove provider lines
40 lines
765 B
YAML
40 lines
765 B
YAML
---
|
|
- debug: msg="START cli/defaults.yaml"
|
|
|
|
- name: setup
|
|
ios_config:
|
|
commands:
|
|
- no description
|
|
- shutdown
|
|
parents:
|
|
- interface Loopback999
|
|
match: none
|
|
|
|
- name: configure device with defaults included
|
|
ios_config:
|
|
src: defaults/config.j2
|
|
defaults: yes
|
|
register: result
|
|
|
|
- debug: var=result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
# FIXME Bug https://github.com/ansible/ansible/issues/19382
|
|
# - "result.updates is not defined"
|
|
|
|
- name: check device with defaults included
|
|
ios_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 cli/defaults.yaml"
|