dc37b41b72
* [2.5] Update ios tests (#42509) * 192.168.0.1/24 conflicts with management IP * Images don't have the hostnames we expect (cherry picked from commit399d13d
) Co-authored-by: Nathaniel Case <this.is@nathanielca.se> * ios test cleanup pt 2 (#42570) * Remove local from ios_config to avoid needing to add provider * ios_smoke should test all with local to pick up the slack (cherry picked from commit381263ad99
)
40 lines
987 B
YAML
40 lines
987 B
YAML
---
|
|
- debug: msg="START cli/src_basic.yaml on connection={{ ansible_connection }}"
|
|
|
|
- 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
|
|
|
|
- name: debug, remove me
|
|
debug:
|
|
msg: "{{ result }}"
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
# https://github.com/ansible/ansible-modules-core/issues/4807
|
|
# FIXME Bug https://github.com/ansible/ansible/issues/19382
|
|
# - "result.updates is not defined"
|
|
|
|
- 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
|
|
# FIXME Bug https://github.com/ansible/ansible/issues/19382
|
|
# - "result.updates is not defined"
|
|
|
|
- debug: msg="END cli/src_basic.yaml on connection={{ ansible_connection }}"
|