1
0
Fork 0

Make the Adguard Home a system user

Same for the group.
This commit is contained in:
Daniele Tricoli 2020-09-14 13:08:15 +02:00
parent 28d9760c5f
commit 0aaf57410b
1 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,7 @@
- name: ensure adguardhome group exits
group:
name: adguardhome
system: true
become: true
- name: ensure adguardhome user exists and has restrictive settings
@ -9,6 +10,8 @@
name: adguardhome
groups: adguardhome
password: "*"
create_home: false
system: true
shell: /usr/sbin/nologin
become: true