diff options
author | am <am@d66ca3ae-40d7-4aa7-90d4-87d79ca94279> | 2007-12-07 12:15:55 +0000 |
---|---|---|
committer | am <am@d66ca3ae-40d7-4aa7-90d4-87d79ca94279> | 2007-12-07 12:15:55 +0000 |
commit | dafee0e2988f7975e3a97985ef9c1339d503469f (patch) | |
tree | fc1fab04a8d2d285fb8a345fe51d1add22f87b9a | |
parent | f678dc2ce9f2b20f9f6cc1b40e4c6c98227b299f (diff) |
für centos nicht ... für den moment
git-svn-id: https://rfd.cronopios.org/ipuppet/trunk/modules/munin@215 d66ca3ae-40d7-4aa7-90d4-87d79ca94279
-rw-r--r-- | manifests/plugin.pp | 9 |
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], + } + } } } } |