Adding znc user, and cleaning up errant whitespace in user ymls
This commit is contained in:
parent
52dfd76fe2
commit
5409703fb2
|
@ -42,3 +42,4 @@
|
||||||
- include: users/k4j.yml
|
- include: users/k4j.yml
|
||||||
- include: users/ultima.yml
|
- include: users/ultima.yml
|
||||||
- include: users/ragnarok.yml
|
- include: users/ragnarok.yml
|
||||||
|
- include: users/znc.yml
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
---
|
||||||
|
- name: add group znc
|
||||||
|
group:
|
||||||
|
name: znc
|
||||||
|
system: yes
|
||||||
|
state: present
|
||||||
|
|
||||||
|
- name: Add the user znc
|
||||||
|
user:
|
||||||
|
name: znc
|
||||||
|
system: yes
|
||||||
|
shell: /bin/false
|
||||||
|
groups: znc
|
||||||
|
create_home: yes
|
||||||
|
home: /var/lib/znc
|
||||||
|
state: present
|
Loading…
Reference in New Issue