aboutsummaryrefslogtreecommitdiff
path: root/roles/icinga2/handlers/main.yml
blob: 15e7fdf046f83344832c178e59e94a8456af7946 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
- name: Restart icinga
  systemd:
    name: icinga2
    state: restarted
    enabled: yes
  become: yes

- name: Restart apache
  systemd:
    name: apache2
    state: restarted
    enabled: yes
  become: yes

- name: Restart postfix
  systemd:
    name: postfix
    state: restarted
    enabled: yes
  become: yes