diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/subsystem/monitor/master.pp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/manifests/subsystem/monitor/master.pp b/manifests/subsystem/monitor/master.pp index e23f02d..1f97a36 100644 --- a/manifests/subsystem/monitor/master.pp +++ b/manifests/subsystem/monitor/master.pp @@ -13,6 +13,17 @@ class nodo::subsystem::monitor::master { default => 'absent', } + # Munin configuration for apache + file { '/etc/apache2/conf.d/munin': + ensure => present, + owner => root, + group => root, + mode => 0644, + source => 'puppet:///modules/nodo/munin/apache.conf', + require => Package["apache"], + notify => Service["apache"], + } + # See http://www.jethrocarr.com/2012/05/26/munin-performance/ file { "munin_graph_performance": ensure => $ensure, |