diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2014-07-13 23:13:14 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-06-07 02:53:06 +0200 |
commit | fc3b951c202cfea5c1f548655cf92f34c22801e4 (patch) | |
tree | 8175de975f624eee7e8e2e0ba23ada3a79340a0f /roles/common/tasks/samhain.yml | |
parent | 4fb4be4d279dd94cab33fc778cfa318b93d6926f (diff) |
wibble
Diffstat (limited to 'roles/common/tasks/samhain.yml')
-rw-r--r-- | roles/common/tasks/samhain.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/common/tasks/samhain.yml b/roles/common/tasks/samhain.yml index 10b1f46..184decc 100644 --- a/roles/common/tasks/samhain.yml +++ b/roles/common/tasks/samhain.yml @@ -1,29 +1,29 @@ - name: Install samhain apt: pkg={{ item }} with_items: - samhain - auditd # 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 + # sudo samhain -t update --foreground -l none # - # To update the database without sending mails: + # To update the database interactively, without sending mails: # - # sudo samhain -t update --foreground -m none + # 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 |