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

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

---
- name: Check installation of znc
  package:
    name: znc
    state: present

- name: Add group "{{ znc_group }}"
  user:
    name: "{{ znc_group }}"
    state: present

- name: Add user "{{ znc_user }}"
  user:
    name: "{{ znc_user }}"
    comment: "{{ znc_user_comment }}"
    group: "{{ znc_group }}"
remember that computers suck.