mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
551847beea
* Fix net_user/eos and also the horribly broken cleanup there * The rest of net_user/eos has the same problem
29 lines
660 B
YAML
29 lines
660 B
YAML
---
|
|
- name: Setup
|
|
net_user: &clear_users
|
|
aggregate:
|
|
- name: netop
|
|
- name: netend
|
|
state: absent
|
|
authorize: yes
|
|
provider: "{{ cli }}"
|
|
|
|
- name: Set multiple users role
|
|
net_user:
|
|
aggregate:
|
|
- name: netop
|
|
- name: netend
|
|
nopassword: yes
|
|
role: network-operator
|
|
state: present
|
|
authorize: yes
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == true'
|
|
- 'result.commands == ["username netop role network-operator", "username netop nopassword", "username netend role network-operator", "username netend nopassword"]'
|
|
|
|
- name: tearDown
|
|
net_user: *clear_users
|