ansible-role-unix-users/tasks/remove_unix_user.yml
Markus Pesch 26e57d7b6f
All checks were successful
continuous-integration/drone/push Build is passing
fix: config ssh client config
2022-07-19 17:54:56 +02:00

7 lines
123 B
YAML

---
- name: Remove unix user {{ unix_user.key }}
user:
name: "{{ unix_user.key }}"
state: absent
remove: yes