ansible/test/integration/targets/net_user/tests/eos/userrole.yaml
Trishna Guha f6a4803669 New module: platform agnostic way to manage local users on network devices (network/net_user.) (#25259)
* 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>
2017-06-06 20:05:08 +05:30

22 lines
470 B
YAML

---
- name: Set multiple users role
net_user:
collection:
- name: netop
- name: netend
role: network-operator
state: present
authorize: yes
provider: "{{ cli }}"
register: result
- assert:
that:
- 'result.changed == true'
- 'result.commands == ["username netop role network-operator", "username netend role network-operator"]'
- name: tearDown
net_user:
purge: yes
authorize: yes
provider: "{{ cli }}"