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.
ansible/test/units/plugins/filter
Steve Dodd ee6ab5d5aa Add support for IOS vlan parsing filter. (#40555)
* Add support for IOS vlan parsing filter.
Example usage below:

{% set parsed_vlans = vlans | vlan_parser %}
switchport trunk allowed vlan {{ parsed_vlans[0] }}
{% for i in range (1, parsed_vlans | count) %}
switchport trunk allowed vlan add {{ parsed_vlans[i] }}

* Update test_network.py

Add import statement for filter

* Fixed PEP8 issues relating to comments

* Fix PEP8 issues related to blank lines

* Removed magic numbers for line lengths. This should generalize support
to other IOS-like NOS that use similar methods for listing vlans. The
default arguments for line lengths will still be specific to Cisco IOS.
The unit tests for line length are still specific to Cisco IOS.
6 years ago
..
fixtures/network Add new filter to parse xml output for network use cases (#31562) 7 years ago
__init__.py Add empty-init code-smell script. (#18406) 8 years ago
test_ipaddr.py Move unit test compat code out of `lib/ansible/`. (#46996) 6 years ago
test_mathstuff.py allow jinja2 unique filter compat (#45637) 6 years ago
test_network.py Add support for IOS vlan parsing filter. (#40555) 6 years ago