5dac2ee00c
* eos_banner docs improvements * run eos_banner tests * basic eos_banner tests * remove trailing newlines * remove hack * Various eos_banner fixes No unicode tests, as the device doesn't support it Correctly set provider result.command should be empty list if no changes * test eos_banner over eapi * revert docs changes, moved to separate PR
17 lines
610 B
YAML
17 lines
610 B
YAML
---
|
|
- hosts: eos
|
|
gather_facts: no
|
|
connection: local
|
|
|
|
vars:
|
|
limit_to: "*"
|
|
debug: false
|
|
|
|
roles:
|
|
- { role: eos_banner, when: "limit_to in ['*', 'eos_banner']" }
|
|
- { role: eos_command, when: "limit_to in ['*', 'eos_command']" }
|
|
- { role: eos_config, when: "limit_to in ['*', 'eos_config']" }
|
|
- { role: eos_template, when: "limit_to in ['*', 'eos_template']" }
|
|
- { role: eos_facts, when: "limit_to in ['*', 'eos_facts']" }
|
|
- { role: eos_eapi, debug: yes, when: "limit_to in ['*', 'eos_eapi']" }
|
|
- { role: eos_system, debug: yes, when: "limit_to in ['*', 'eos_system']" }
|