summaryrefslogtreecommitdiffstats
path: root/roles/common/tasks
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2014-07-01 23:56:18 +0200
committerGuilhem Moulin <guilhem@fripost.org>2015-06-07 02:52:14 +0200
commit7becb5c762df5089bb0c4ff5a7f2fb026379fcb3 (patch)
tree1495c78c2f7cd25c02a2020dfee56b555cfc1cda /roles/common/tasks
parentde4859456f1de54540c96ad97f62858dd089a980 (diff)
Tel logcheck which logs to monitor.
Diffstat (limited to 'roles/common/tasks')
-rw-r--r--roles/common/tasks/logging.yml16
1 files changed, 15 insertions, 1 deletions
diff --git a/roles/common/tasks/logging.yml b/roles/common/tasks/logging.yml
index 9430d0b..62727c9 100644
--- a/roles/common/tasks/logging.yml
+++ b/roles/common/tasks/logging.yml
@@ -37,7 +37,7 @@
- meta: flush_handlers
-- name: Configure logcheck
+- name: Configure logcheck (1)
copy: src=etc/logcheck/{{ item }}
dest=/etc/logcheck/{{ item }}
owner=root group=logcheck
@@ -53,6 +53,20 @@
tags:
- logcheck
+- name: Configure logcheck (2)
+ lineinfile: dest=/etc/logcheck/logcheck.logfiles
+ line={{ item }}
+ state=present
+ create=yes
+ owner=root group=logcheck
+ mode=0640
+ with_items:
+ - /var/log/syslog
+ - /var/log/auth.log
+ - /var/log/mail.log
+ tags:
+ - logcheck
+
- name: Minimal logging policy (1)
lineinfile: dest=/etc/logrotate.d/rsyslog
regexp="^/var/log/mail\\.(log|info|sasl)$"