summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authoram <am@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2007-12-04 17:32:18 +0000
committeram <am@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2007-12-04 17:32:18 +0000
commit34e693dab7cb5193cc9661c05e7e13b92814cedf (patch)
tree1442e106d5d947ecb43f577c993d283c0f42a652 /manifests
parentd362c7c3f555d620b35e0021781b6f0e894105fc (diff)
test
git-svn-id: https://svn/ipuppet/trunk/modules/munin@192 d66ca3ae-40d7-4aa7-90d4-87d79ca94279
Diffstat (limited to 'manifests')
-rw-r--r--manifests/plugin.pp8
1 files changed, 5 insertions, 3 deletions
diff --git a/manifests/plugin.pp b/manifests/plugin.pp
index 6a84bc6..f72875b 100644
--- a/manifests/plugin.pp
+++ b/manifests/plugin.pp
@@ -74,8 +74,8 @@ define munin::remoteplugin($ensure = "present", $source, $config = '') {
class munin::plugins::base-debian {
case $operatingsystem {
- debian: { $munin-node-service = "munin-node"; }
gentoo: { $munin-node-service = "munin"; }
+ debian: { $munin-node-service = "munin-node"; }
}
file {
[ "/etc/munin/plugins", "/etc/munin/plugin-conf.d" ]:
@@ -83,11 +83,13 @@ class munin::plugins::base-debian {
ensure => directory, checksum => mtime,
recurse => true, purge => true, force => true,
mode => 0755, owner => root, group => root,
- notify => Service[$munin-node-service];
+ #notify => Service[$munin-node-service];
+ notify => Service[munin];
"/etc/munin/plugin-conf.d/munin-node":
ensure => present,
mode => 0644, owner => root, group => root,
- notify => Service[$munin-node-service];
+ # notify => Service[$munin-node-service];
+ notify => Service[munin];
}
}