summaryrefslogtreecommitdiff
path: root/manifests/plugin.pp
diff options
context:
space:
mode:
authoram <am@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2007-12-07 12:15:55 +0000
committeram <am@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2007-12-07 12:15:55 +0000
commite88e44ca8b8732abdd922562f7ed87aaa5ee860c (patch)
treefc1fab04a8d2d285fb8a345fe51d1add22f87b9a /manifests/plugin.pp
parent01273ad5699ff5791416892fb25f84b1ba227d05 (diff)
für centos nicht ... für den moment
git-svn-id: https://svn/ipuppet/trunk/modules/munin@215 d66ca3ae-40d7-4aa7-90d4-87d79ca94279
Diffstat (limited to 'manifests/plugin.pp')
-rw-r--r--manifests/plugin.pp9
1 files changed, 8 insertions, 1 deletions
diff --git a/manifests/plugin.pp b/manifests/plugin.pp
index 579e2f9..5649b29 100644
--- a/manifests/plugin.pp
+++ b/manifests/plugin.pp
@@ -41,7 +41,14 @@ define munin::plugin (
file { $plugin:
ensure => "$script_path/${plugin_src}",
require => Package[$munin_node_package],
- notify => Service[$munin_node_service],
+ case $operatingsystem {
+ centos: {
+ # do nothing
+ }
+ default: {
+ notify => Service[$munin_node_service],
+ }
+ }
}
}
}