2016-10-28 20:50:29 +02:00
|
|
|
---
|
|
|
|
- hosts: ios
|
|
|
|
gather_facts: no
|
2017-03-08 20:21:45 +01:00
|
|
|
connection: local
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
vars:
|
|
|
|
limit_to: "*"
|
|
|
|
debug: false
|
|
|
|
|
|
|
|
roles:
|
2017-03-16 16:35:44 +01:00
|
|
|
- { role: ios_banner, when: "limit_to in ['*', 'ios_banner']" }
|
2016-10-28 20:50:29 +02:00
|
|
|
- { role: ios_command, when: "limit_to in ['*', 'ios_command']" }
|
|
|
|
- { role: ios_config, when: "limit_to in ['*', 'ios_config']" }
|
|
|
|
- { role: ios_facts, when: "limit_to in ['*', 'ios_facts']" }
|
|
|
|
- { role: ios_template, when: "limit_to in ['*', 'ios_template']" }
|
2017-03-08 20:21:45 +01:00
|
|
|
- { role: ios_system, when: "limit_to in ['*', 'ios_system']" }
|