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>
19 lines
358 B
YAML
19 lines
358 B
YAML
---
|
|
- name: Set user to privilege level 15
|
|
net_user:
|
|
name: netop
|
|
privilege: 15
|
|
state: present
|
|
authorize: yes
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == true'
|
|
- 'result.commands == ["username netop privilege 15"]'
|
|
|
|
- name: tearDown
|
|
net_user:
|
|
purge: yes
|
|
provider: "{{ cli }}"
|