aboutsummaryrefslogtreecommitdiffstats
path: root/roles/setup_security/tasks/main.yml
blob: 7d29cf5b8f9e182e9d2a4b6229f0d61ae79b474f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

# =========================================================================== #
#                   __                                    _ __       
#       _________  / /__       ________  _______  _______(_) /___  __
#      / ___/ __ \/ / _ \     / ___/ _ \/ ___/ / / / ___/ / __/ / / /
#     / /  / /_/ / /  __/    (__  )  __/ /__/ /_/ / /  / / /_/ /_/ / 
#    /_/   \____/_/\___(_)  /____/\___/\___/\__,_/_/  /_/\__/\__, /  
#                                                           /____/
#
# =========================================================================== #

---
- name: Remove default user pi
  user:
    name: pi
    state: absent
    remove: yes

- name: Remove default group pi
  group:
    name: pi
    state: absent
remember that computers suck.