From 1ff45f72a2e02d73f1ef4874a319826203b1b879 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sat, 18 Jan 2014 15:54:34 -0200 Subject: Manage rrdcached on nodo::subsystem::monitor::master --- manifests/subsystem/monitor/master.pp | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'manifests/subsystem/monitor') diff --git a/manifests/subsystem/monitor/master.pp b/manifests/subsystem/monitor/master.pp index 6895617..44de95b 100644 --- a/manifests/subsystem/monitor/master.pp +++ b/manifests/subsystem/monitor/master.pp @@ -6,4 +6,27 @@ class nodo::subsystem::monitor::master { source => 'puppet:///modules/nodo/etc/nagios-plugins/check_rbl.ini', require => Package['nagios'], } + + # + # See https://raymii.org/s/tutorials/Munin_optimalization_on_Debian.html + # https://munin.readthedocs.org/en/latest/master/rrdcached.html + # http://kuszelas.eu/~eyck/log/Howto/Munin.Rrdcached.html + # + package { 'rrdcached': + ensure => present, + } + + file { '/etc/default/rrdcached': + ensure => present, + owner => root, + group => root, + source => 'puppet:///modules/nodo/etc/default/rrdcached', + require => Package['rrdcached'], + notify => Service['rrdcached'], + } + + service { 'rrdcached': + ensure => running, + require => Package['rrdcached'], + } } -- cgit v1.2.3