2017-06-02 14:06:38 +02:00
|
|
|
---
|
|
|
|
- hosts: platform_agnostic
|
|
|
|
gather_facts: no
|
|
|
|
connection: local
|
|
|
|
|
|
|
|
vars:
|
|
|
|
limit_to: "*"
|
|
|
|
debug: false
|
|
|
|
|
|
|
|
roles:
|
|
|
|
- { role: net_system, when: "limit_to in ['*', 'net_system']" }
|
2017-06-02 17:01:08 +02:00
|
|
|
- { role: net_banner, when: "limit_to in ['*', 'net_banner']" }
|
2017-06-02 18:33:27 +02:00
|
|
|
- { role: net_command, when: "limit_to in ['*', 'net_command']" }
|
2017-06-13 14:42:42 +02:00
|
|
|
- { role: net_user, when: "limit_to in ['*', 'net_user']" }
|
2017-06-07 23:47:28 +02:00
|
|
|
- { role: net_vlan, when: "limit_to in ['*', 'net_vlan']" }
|
2017-06-13 14:42:42 +02:00
|
|
|
- { role: net_vrf, when: "limit_to in ['*', 'net_vrf']" }
|