summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorkwadronaut <kwadronaut@aktivix.org>2012-06-28 20:50:28 +0200
committervarac <varacanero@zeromail.org>2012-07-13 13:42:57 +0200
commitea31faee76141646c173d88bd5bec5aa4a773c1c (patch)
treec177886014b2899ef8b1713970d013f0cc8b8674 /manifests
parenta7979748a2ed642cad742023f201617fb29c9e2b (diff)
Default munin htmldir in Debian moved some time ago to
/var/cache/munin/www This commit makes sure that you have it set correctly
Diffstat (limited to 'manifests')
-rw-r--r--manifests/host/cgi.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/host/cgi.pp b/manifests/host/cgi.pp
index cbf1052..ab09168 100644
--- a/manifests/host/cgi.pp
+++ b/manifests/host/cgi.pp
@@ -3,7 +3,7 @@ class munin::host::cgi inherits munin::host {
case $operatingsystem {
debian: {
exec { 'set_modes_for_cgi':
- command => 'chgrp www-data /var/log/munin /var/log/munin/munin-graph.log && chmod g+w /var/log/munin /var/log/munin/munin-graph.log && find /var/www/munin/* -maxdepth 1 -type d -exec chgrp -R www-data {} \; && find /var/www/munin/* -maxdepth 1 -type d -exec chmod -R g+w {} \;',
+ command => 'chgrp www-data /var/log/munin /var/log/munin/munin-graph.log && chmod g+w /var/log/munin /var/log/munin/munin-graph.log && find /var/cache/munin/www/* -maxdepth 1 -type d -exec chgrp -R www-data {} \; && find /var/www/munin/* -maxdepth 1 -type d -exec chmod -R g+w {} \;',
refreshonly => true,
subscribe => File['/etc/munin/munin.conf.header'],
}