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
305 B
YAML
20 lines
305 B
YAML
3 years ago
|
- name: remove users
|
||
|
user:
|
||
|
name: "{{ item }}"
|
||
|
state: absent
|
||
|
remove: yes
|
||
|
loop:
|
||
|
- test1
|
||
|
- test_uid
|
||
|
- nonexistent
|
||
|
- "{{ remote_unprivileged_user }}"
|
||
|
|
||
|
- name: remove groups
|
||
|
group:
|
||
|
name: "{{ item }}"
|
||
|
state: absent
|
||
|
loop:
|
||
|
- test1
|
||
|
- test_gid
|
||
|
- nonexistent1
|