summaryrefslogtreecommitdiff
path: root/manifests/plugin.pp
diff options
context:
space:
mode:
authormh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2008-01-02 20:16:12 +0000
committermh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2008-01-02 20:16:12 +0000
commitaad7d1cb8c499af0ebe5f8a1ab0c55b9017b7ea2 (patch)
tree7876f02bf39468cc9f72b696c0167054b4a77afd /manifests/plugin.pp
parent907173d99e26513fd280b7e0a137afa825d855d7 (diff)
fixed group stuff
git-svn-id: https://svn/ipuppet/trunk/modules/munin@350 d66ca3ae-40d7-4aa7-90d4-87d79ca94279
Diffstat (limited to 'manifests/plugin.pp')
-rw-r--r--manifests/plugin.pp12
1 files changed, 6 insertions, 6 deletions
diff --git a/manifests/plugin.pp b/manifests/plugin.pp
index 15049f2..f21098e 100644
--- a/manifests/plugin.pp
+++ b/manifests/plugin.pp
@@ -70,7 +70,7 @@ define munin::plugin (
debug("creating $plugin_conf")
file { $plugin_conf:
content => "[${name}]\n$config\n",
- mode => 0644, owner => root, group => root,
+ mode => 0644, owner => root, group => 0,
}
}
}
@@ -85,7 +85,7 @@ define munin::remoteplugin($ensure = "present", $source, $config = '') {
file {
"/var/lib/puppet/modules/munin/plugins/${name}":
source => $source,
- mode => 0755, owner => root, group => root;
+ mode => 0755, owner => root, group => 0;
}
munin::plugin { $name:
ensure => $ensure,
@@ -123,10 +123,10 @@ class munin::plugins::base {
source => "puppet://$servername/munin/empty",
ensure => directory, checksum => mtime,
recurse => true, purge => true, force => true,
- mode => 0755, owner => root, group => root;
+ mode => 0755, owner => root, group => 0;
"/etc/munin/plugin-conf.d/munin-node":
ensure => present,
- mode => 0644, owner => root, group => root;
+ mode => 0644, owner => root, group => 0;
}
}
@@ -136,11 +136,11 @@ class munin::plugins::base {
source => "puppet://$servername/munin/empty",
ensure => directory, checksum => mtime,
recurse => true, purge => true, force => true,
- mode => 0755, owner => root, group => root,
+ mode => 0755, owner => root, group => 0,
notify => Service["$munin_node_service"];
"/etc/munin/plugin-conf.d/munin-node":
ensure => present,
- mode => 0644, owner => root, group => root,
+ mode => 0644, owner => root, group => 0,
notify => Service[$munin_node_service];
}
}