ansible-role-unix-users/tasks/remove_unix_user.yml

8 lines
141 B
YAML
Raw Permalink Normal View History

2022-05-09 08:17:07 +00:00
---
- name: Remove unix user {{ unix_user.key }}
ansible.builtin.user:
2022-07-19 15:54:56 +00:00
name: "{{ unix_user.key }}"
2022-05-09 08:17:07 +00:00
state: absent
2023-02-08 17:25:07 +00:00
remove: true