浏览代码

Merge pull request #102 from cji/master

Add logwatch to the monitoring role to email daily log summaries
Alex Payne 11 年前
父节点
当前提交
122fc668e3
共有 2 个文件被更改,包括 7 次插入1 次删除
  1. 5
    0
      roles/monitoring/tasks/logwatch.yml
  2. 2
    1
      roles/monitoring/tasks/main.yml

+ 5
- 0
roles/monitoring/tasks/logwatch.yml 查看文件

@@ -0,0 +1,5 @@
1
+- name: Install logwatch
2
+  apt: pkg=logwatch state=installed
3
+
4
+- name: Configure logwatch to email {{ main_user_name }}@{{ domain }} daily
5
+  action: lineinfile dest=/etc/cron.daily/00logwatch regexp="^/usr/sbin/logwatch" line="/usr/sbin/logwatch --output mail --mailto {{ main_user_name }}@{{ domain }} --detail high" state=present create=yes

+ 2
- 1
roles/monitoring/tasks/main.yml 查看文件

@@ -1 +1,2 @@
1
-- include: monit.yml tags=monit
1
+- include: monit.yml tags=monit
2
+- include: logwatch.yml tags=logwatch

正在加载...
取消
保存