ansible/test/integration/targets/net_user/tests/eos/userprivilege.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

25 lines
498 B
YAML

---
- name: Setup
net_user: &clear_netop
name: netop
state: absent
authorize: yes
provider: "{{ cli }}"
- name: Set user to privilege level 15
net_user:
name: netop
nopassword: yes
privilege: 15
state: present
authorize: yes
provider: "{{ cli }}"
register: result
- assert:
that:
- 'result.changed == true'
- 'result.commands == ["username netop privilege 15", "username netop nopassword"]'
- name: tearDown
net_user: *clear_netop