24 lines
514 B
YAML
24 lines
514 B
YAML
---
|
|
- name: system setup | user hardening | remove unnecessary system accounts
|
|
tags: users,hardening,system
|
|
user:
|
|
name: "{{ item }}"
|
|
state: absent
|
|
remove: true # Also removes home directory and mail spool
|
|
loop:
|
|
# Legacy or unused service accounts
|
|
- lp
|
|
- sync
|
|
- shutdown
|
|
- halt
|
|
- mail
|
|
- news
|
|
- uucp
|
|
- proxy
|
|
- backup
|
|
- list
|
|
- irc
|
|
- gnats
|
|
- games
|
|
notify: Update_aide_database
|
|
ignore_errors: true # Some users might not exist, which is fine |