1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/integration/targets/net_user/tests/eos/userrole.yaml
Nathaniel Case 551847beea
Fix issues with net_user tests on eos (#33691)
* Fix net_user/eos and also the horribly broken cleanup there

* The rest of net_user/eos has the same problem
2017-12-07 17:01:28 -05:00

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