e90f1d6449
* net_command platform agnostic implementation Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * Add net_command platform agnostic module Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * Add integration test for net_command module Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * fix yaml issue
13 lines
330 B
YAML
13 lines
330 B
YAML
---
|
|
- hosts: platform_agnostic
|
|
gather_facts: no
|
|
connection: local
|
|
|
|
vars:
|
|
limit_to: "*"
|
|
debug: false
|
|
|
|
roles:
|
|
- { role: net_system, when: "limit_to in ['*', 'net_system']" }
|
|
- { role: net_banner, when: "limit_to in ['*', 'net_banner']" }
|
|
- { role: net_command, when: "limit_to in ['*', 'net_command']" }
|