summaryrefslogtreecommitdiff
path: root/roles/ick-notifier/tasks/main.yml
blob: d309ebb7c262ee3f6f37e4a7868b7bb6065b9a28 (plain)
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
28
29
30
31
32
- name: install notification packages
  apt:
    name: "{{ item }}"
  with_items:
    - "{{ ci_prefix }}ick2"

- name: create config dirs
  file:
    state: directory
    path: "{{ item }}"
    owner: root
    group: root
    mode: 0755
  with_items:
    - /etc/ick

- name: install notification config
  template:
    src: notifications.yaml.j2
    dest: /etc/ick/notifications.yaml
    owner: root
    group: root
    mode: 0644

- name: enable and start units
  systemd:
    daemon_reload: yes
    name: "{{ item }}"
    state: restarted
    enabled: yes
  with_items:
    - notification_service