summaryrefslogtreecommitdiffstats
path: root/roles/common/handlers/main.yml
blob: ddfe86b059fcb90240d79b8ecd4eb2a6a2410f2d (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
33
34
35
36
37
38
39
# 'service: name=... state=started' tasks should NOT run if there is a
# corresponding state=restarted handler.  (Register the task notifying
# the handler, and add a conditional.)
---
- name: Refresh hostname
  service: name=hostname.sh state=restarted

- name: apt-get update
  apt: update_cache=yes

- name: Reload samhain
  service: name=samhain state=reloaded

- name: Update rkhunter's data file
  command: /usr/bin/rkhunter --propupd

- name: Restart fail2ban
  service: name=fail2ban state=restarted

- name: Reload networking
  # /etc/init.d/networking doesn't answer the status command; but since
  # it should be "up" whenever ansible has access to the machine, we use
  # pattern=init as a dummy assumption.
  service: name=networking pattern=init state=reloaded

- name: Restart rsyslog
  service: name=rsyslog state=restarted

- name: Restart ntp
  service: name=ntp state=restarted

- name: Restart Postfix
  service: name=postfix state=restarted

- name: Reload Postfix
  service: name=postfix state=reloaded

- name: Update certificate
  command: update-ca-certificates