mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
Introspect platform before running ios tests (#32125)
In some IOS tests, we can't just assume a certain interface, as we test on IOS and IOS-XE and in our CI they scheme numbering is different. Introspect version on the tests where needed.
This commit is contained in:
committed by
GitHub
parent
a9d8157e81
commit
dc0aa75029
@@ -1,10 +1,20 @@
|
||||
---
|
||||
- debug: msg="START cli/ping.yaml"
|
||||
|
||||
- name: Get show ip interface GigabitEthernet0/0 output
|
||||
- ios_command:
|
||||
commands: show version
|
||||
register: show_version_result
|
||||
|
||||
- set_fact: management_interface=GigabitEthernet0/0
|
||||
when: "'Cisco IOS' in show_version_result.stdout[0]"
|
||||
|
||||
- set_fact: management_interface=GigabitEthernet1
|
||||
when: "'Cisco IOS-XE' in show_version_result.stdout[0]"
|
||||
|
||||
- name: Get show ip management nterface output
|
||||
ios_command:
|
||||
commands:
|
||||
- show ip interface GigabitEthernet0/0 | include Internet address
|
||||
- show ip interface "{{ management_interface }}" | include Internet address
|
||||
authorize: yes
|
||||
register: show_ip_interface_result
|
||||
|
||||
|
||||
Reference in New Issue
Block a user