summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
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],
+ }
+ }
}
}
}