98269888a9
* Add iosxr_banner implementation module Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * Integration test for iosxr_banner Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * Unit test for iosxr_banner Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * remove blank line pep8 Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
17 lines
616 B
YAML
17 lines
616 B
YAML
---
|
|
- hosts: iosxr
|
|
gather_facts: no
|
|
connection: local
|
|
|
|
vars:
|
|
limit_to: "*"
|
|
debug: false
|
|
|
|
roles:
|
|
- { role: iosxr_command, when: "limit_to in ['*', 'iosxr_command']" }
|
|
- { role: iosxr_config, when: "limit_to in ['*', 'iosxr_config']" }
|
|
- { role: iosxr_facts, when: "limit_to in ['*', 'iosxr_facts']" }
|
|
- { role: iosxr_template, when: "limit_to in ['*', 'iosxr_template']" }
|
|
- { role: iosxr_system, when: "limit_to in ['*', 'iosxr_system']" }
|
|
- { role: iosxr_user, when: "limit_to in ['*', 'iosxr_user']" }
|
|
- { role: iosxr_banner, when: "limit_to in ['*', 'iosxr_banner']" }
|