1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-07-08 19:49:09 +00:00

Add eos_interface module (#34258)

* Add eos_interface module

*  Implementation of eos_interface module
*  Intergration test for eos_interface module
*  Minor fix in eos_l3_interface module
*  Minor fix in ios_interface integration test

* Fix CI issues

* Fix more CI issues
This commit is contained in:
Ganesh Nalawade 2017-12-28 16:03:50 +05:30 committed by GitHub
parent 747682fa53
commit a3c185bfa8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 1332 additions and 2 deletions

View file

@ -108,7 +108,7 @@
- "result.failed == true"
- "'host dummy_host' in result.failed_conditions"
- "'port dummy_port' in result.failed_conditions"
when: '"netdev" in show_lldp_neighbors_result.stdout'
when: '"netdev" in show_lldp_neighbors_result.stdout[0]'
- name: Aggregate config + intent (pass)
ios_interface:
@ -158,4 +158,4 @@
- "result.failed == true"
- "'host dummy_host' in result.failed_conditions"
- "'port dummy_port' in result.failed_conditions"
when: "'netdev' in show_lldp_neighbors_result.stdout"
when: "'netdev' in show_lldp_neighbors_result.stdout[0]"