c8ba8bdd6d
* Add ios_static_route module * Add ios_static_route integration tests * Add platform agnostic integration tests for IOS * Replace unicode function to ansible module_utils to_text * Add collections handling logic * Add integration tests for collections * Make collections and prefix mutually exclusive * Add net_static_route integration tests for collections * Do not store load_config return value, as it returns nothing
18 lines
666 B
YAML
18 lines
666 B
YAML
---
|
|
- hosts: ios
|
|
gather_facts: no
|
|
connection: local
|
|
|
|
vars:
|
|
limit_to: "*"
|
|
debug: false
|
|
|
|
roles:
|
|
- { role: ios_banner, when: "limit_to in ['*', 'ios_banner']" }
|
|
- { 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']" }
|
|
- { role: ios_system, when: "limit_to in ['*', 'ios_system']" }
|
|
- { role: ios_user, when: "limit_to in ['*', 'ios_user']" }
|
|
- { role: ios_static_route, when: "limit_to in ['*', 'ios_static_route']" }
|