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.
63 lines
1.3 KiB
YAML
63 lines
1.3 KiB
YAML
---
|
|
- debug: msg="START cli/defaults.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: setup
|
|
ios_config:
|
|
commands:
|
|
- no description
|
|
- shutdown
|
|
parents:
|
|
- interface Loopback999
|
|
match: none
|
|
authorize: yes
|
|
|
|
- name: configure device with defaults included
|
|
ios_config:
|
|
src: defaults/config.j2
|
|
defaults: yes
|
|
authorize: 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
|
|
authorize: yes
|
|
register: result
|
|
|
|
- debug: var=result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
- "result.updates is not defined"
|
|
|
|
- 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"
|
|
|
|
- debug: msg="END cli/defaults.yaml on connection={{ ansible_connection }}"
|