summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorandreas <andreas@immerda.ch>2007-12-07 12:15:55 +0000
committerandreas <andreas@immerda.ch>2007-12-07 12:15:55 +0000
commit3d06fbf56e3f1acff944363b2e2b052fe3d4b9e5 (patch)
treefc1fab04a8d2d285fb8a345fe51d1add22f87b9a /manifests
parent4527d6f81e4da2ec2dcbd00ea04f6a0ba6c680c5 (diff)
für centos nicht ... für den moment
Diffstat (limited to 'manifests')
-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],
+ }
+ }
}
}
}