summaryrefslogtreecommitdiffstats
path: root/roles/common/tasks/samhain.yml
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2018-06-09 00:31:38 +0200
committerGuilhem Moulin <guilhem@fripost.org>2018-12-03 02:53:27 +0100
commit203c3ca3d0b3d053827e6ced01cdde85eb0871c5 (patch)
treeb0f3dfb8ac4698a3b68c3ca259d9fab802f2f7ed /roles/common/tasks/samhain.yml
parent4a841439606768e8b8783f4a1bd32096a7bbcd9c (diff)
Skip samhain installation.
It's become too verbose (too many false-positive)…
Diffstat (limited to 'roles/common/tasks/samhain.yml')
-rw-r--r--roles/common/tasks/samhain.yml26
1 files changed, 0 insertions, 26 deletions
diff --git a/roles/common/tasks/samhain.yml b/roles/common/tasks/samhain.yml
deleted file mode 100644
index dd5c09b..0000000
--- a/roles/common/tasks/samhain.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-- name: Install samhain
- apt: pkg=samhain
- # XXX: Doesn't work out of the box, see #660197.
- # Every once in a while, or after a major upgrade, you may want to
- # update Samhain's database:
- #
- # sudo samhain -t update --foreground -l none
- #
- # To update the database interactively, without sending mails:
- #
- # sudo samhain -t update --interactive -l none -m none
-
-- name: Configure samhain
- copy: src=etc/samhain/samhainrc
- dest=/etc/samhain/samhainrc
- owner=root group=root
- mode=0644
- notify:
- - Reload samhain
-
-- name: Start samhain
- # This task is inconditional because samhain is reloaded not
- # restarted.
- service: name=samhain state=started
-
-- meta: flush_handlers