diff options
author | varac <varacanero@zeromail.org> | 2015-08-27 14:04:28 +0200 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2015-08-27 14:04:28 +0200 |
commit | 4a13b00947efdc1f356b24bfd906eed670a25b2a (patch) | |
tree | dc41b5d5e8ae0fecde5038c1c0c8529c15846914 /puppet/modules/site_config/manifests | |
parent | f232e63b022933a57ac8e86b23d8df6b6bb86930 (diff) | |
parent | 5e21bb0d2415de0a40adfaa3b149313c459e7947 (diff) |
Merge branch '7375_disable_checkmk_logwatch_for_bigcouch' into develop
Diffstat (limited to 'puppet/modules/site_config/manifests')
-rw-r--r-- | puppet/modules/site_config/manifests/remove_files.pp | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/puppet/modules/site_config/manifests/remove_files.pp b/puppet/modules/site_config/manifests/remove_files.pp index b339e6af..a9a0c8bf 100644 --- a/puppet/modules/site_config/manifests/remove_files.pp +++ b/puppet/modules/site_config/manifests/remove_files.pp @@ -46,5 +46,22 @@ class site_config::remove_files { onlyif => "/bin/grep -qe 'leap_mx.log' /etc/check_mk/logwatch.state" } - + # Don't use check_mk logwatch to watch bigcouch logs anymore + # see https://leap.se/code/issues/7375 for more details + file { '/etc/check_mk/logwatch.d/bigcouch.cfg': + ensure => absent, + notify => [ + Exec['remove_bigcouch_logwatch_spoolfiles'], + Exec['remove_bigcouch_logwatch_stateline'] + ] + } + # remove leftover bigcouch logwatch spool files + exec { 'remove_bigcouch_logwatch_spoolfiles': + command => 'find /var/lib/check_mk/logwatch -name \'\\opt\\bigcouch\\var\\log\\bigcouch.log\' -exec rm {} \;', + refreshonly => true, + } + exec { 'remove_bigcouch_logwatch_stateline': + command => "sed -i '/bigcouch.log/d' /etc/check_mk/logwatch.state", + refreshonly => true, + } } |