mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
358 B
YAML
20 lines
358 B
YAML
8 years ago
|
---
|
||
|
- 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 }}"
|