summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorandreas <andreas@immerda.ch>2007-12-04 17:32:18 +0000
committerandreas <andreas@immerda.ch>2007-12-04 17:32:18 +0000
commitc1c855c88dde8d24a2de36c0cab997cb4a58011b (patch)
tree1442e106d5d947ecb43f577c993d283c0f42a652 /manifests
parent23299fbb8ad10633d17aae964709f17cf1b5d758 (diff)
test
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];
}
}