f6a4803669
* Add net_user platform agnostic module Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * Integration test for net_user Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * modify eos_user module to support name param as alias to username Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * Test collection of users Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
14 lines
394 B
YAML
14 lines
394 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']" }
|
|
- { role: net_user, when: "limit_to_in ['*', 'net_user']" }
|