summaryrefslogtreecommitdiff
path: root/manifests/host/cgi.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/host/cgi.pp')
-rw-r--r--manifests/host/cgi.pp16
1 files changed, 16 insertions, 0 deletions
diff --git a/manifests/host/cgi.pp b/manifests/host/cgi.pp
new file mode 100644
index 0000000..7fdb281
--- /dev/null
+++ b/manifests/host/cgi.pp
@@ -0,0 +1,16 @@
+class munin::host::cgi {
+ exec{'set_modes_for_cgi':
+ command => 'chgrp apache /var/log/munin /var/log/munin/munin-graph.log && chmod g+w /var/log/munin /var/log/munin/munin-graph.log && find /var/www/html/munin/* -maxdepth 1 -type d -exec chgrp -R apache {} \; && find /var/www/html/munin/* -maxdepth 1 -type d -exec chmod -R g+w {} \;',
+ refreshonly => true,
+ subscribe => File['/etc/munin/munin.conf.header'],
+ }
+
+ file{'/etc/logrotate.d/munin':
+ source => [ "puppet://$server/files/munin/config/host/${fqdn}/logrotate",
+ "puppet://$server/files/munin/config/host/logrotate.$operatingsystem",
+ "puppet://$server/files/munin/config/host/logrotate",
+ "puppet://$server/munin/config/host/logrotate.$operatingsystem",
+ "puppet://$server/munin/config/host/logrotate" ],
+ owner => root, group => 0, mode => 0644;
+ }
+}