2016-10-28 20:50:29 +02:00
|
|
|
---
|
2017-12-20 15:03:29 +01:00
|
|
|
- debug: msg="START cli/src_basic.yaml on connection={{ ansible_connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: setup
|
|
|
|
ios_config:
|
|
|
|
commands:
|
|
|
|
- no description
|
|
|
|
- no shutdown
|
|
|
|
parents:
|
|
|
|
- interface Loopback999
|
|
|
|
match: none
|
|
|
|
|
|
|
|
- name: configure device with config
|
|
|
|
ios_config:
|
|
|
|
src: basic/config.j2
|
|
|
|
register: result
|
|
|
|
|
2017-01-20 21:18:12 +01:00
|
|
|
- name: debug, remove me
|
|
|
|
debug:
|
|
|
|
msg: "{{ result }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == true"
|
|
|
|
# https://github.com/ansible/ansible-modules-core/issues/4807
|
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 config
|
|
|
|
ios_config:
|
|
|
|
src: basic/config.j2
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
# https://github.com/ansible/ansible-modules-core/issues/4807
|
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
|
|
|
|
2018-09-06 20:24:56 +02:00
|
|
|
- name: check for empty diff
|
|
|
|
ios_config:
|
|
|
|
running_config: |
|
|
|
|
service timestamps debug datetime msec
|
|
|
|
service timestamps log datetime msec
|
|
|
|
lines:
|
|
|
|
- service timestamps debug datetime msec
|
|
|
|
- service timestamps log datetime msec
|
|
|
|
check_mode: True
|
|
|
|
register: result
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.updates is undefined"
|
|
|
|
|
|
|
|
- name: check for diff with ignore lines for running config
|
|
|
|
ios_config:
|
|
|
|
running_config: |
|
|
|
|
service timestamps debug datetime msec
|
|
|
|
service timestamps log datetime msec
|
|
|
|
lines:
|
|
|
|
- service timestamps debug datetime msec
|
|
|
|
- service timestamps log datetime msec
|
|
|
|
diff_ignore_lines: service timestamps log datetime msec
|
|
|
|
check_mode: True
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "'service timestamps log datetime msec' in result.updates"
|
|
|
|
|
2017-12-20 15:03:29 +01:00
|
|
|
- debug: msg="END cli/src_basic.yaml on connection={{ ansible_connection }}"
|