summaryrefslogtreecommitdiff
path: root/puppet/modules/site_config/manifests/remove/monitoring.pp
blob: 18e2949bbc8797c92059199e5e7f17c5fd6d9c1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# remove leftovers on monitoring nodes
class site_config::remove::monitoring {

  # Remove check_mk loggwatch spoolfiles for
  # tapicero and bigcouch
  tidy {
    'remove_logwatch_spoolfiles':
      path    => '/var/lib/check_mk/logwatch',
      recurse => true,
      matches => [ '*tapicero.log', '*bigcouch.log'];
  }

}