b3e8c48d4b
* WIP Add eos_vlan module * Fix docstrings * Fix pep8 issues * Add active/suspend states logic * Add integration tests for eos_vlan * Fix map_config_to_obj on EAPI * Sixify iteritems * Add platform agnostic net_vlan integration tests
15 lines
459 B
YAML
15 lines
459 B
YAML
---
|
|
- hosts: platform_agnostic
|
|
gather_facts: no
|
|
connection: local
|
|
|
|
vars:
|
|
limit_to: "*"
|
|
debug: false
|
|
|
|
roles:
|
|
- { role: net_system, when: "limit_to in ['*', 'net_system']" }
|
|
- { role: net_banner, when: "limit_to in ['*', 'net_banner']" }
|
|
- { role: net_command, when: "limit_to in ['*', 'net_command']" }
|
|
- { role: net_user, when: "limit_to_in ['*', 'net_user']" }
|
|
- { role: net_vlan, when: "limit_to in ['*', 'net_vlan']" }
|