summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authoram <am@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2008-02-01 15:47:52 +0000
committeram <am@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2008-02-01 15:47:52 +0000
commit2e59b0457541b624057f9b60eb6aa99d0d827521 (patch)
tree5d063462028f41a47de678f04493aa20dbff2afc /manifests
parentd2f00103d81de8d0483997b98bf879a98d9134e3 (diff)
test
git-svn-id: https://svn/ipuppet/trunk/modules/munin@689 d66ca3ae-40d7-4aa7-90d4-87d79ca94279
Diffstat (limited to 'manifests')
-rw-r--r--manifests/plugin.pp23
1 files changed, 22 insertions, 1 deletions
diff --git a/manifests/plugin.pp b/manifests/plugin.pp
index b33260e..8869383 100644
--- a/manifests/plugin.pp
+++ b/manifests/plugin.pp
@@ -34,7 +34,28 @@ define munin::plugin (
$script_path_in = '',
$config = '')
{
- include munin::plugin::paths
+ case $operatingsystem {
+ gentoo: {
+ $munin_node_package = "munin"
+ $munin_node_service = "munin"
+ $script_path = "/usr/libexec/munin/plugins"
+ }
+ debian: {
+ $munin_node_service = "munin-node"
+ $munin_node_package = "munin-node"
+ $script_path = "/usr/share/munin/plugins"
+ }
+ centos: {
+ $munin_node_service = "munin-node"
+ $munin_node_package = "munin-node"
+ $script_path = "/usr/share/munin/plugins"
+ }
+ default: {
+ $munin_node_service = "munin-node"
+ $munin_node_package = "munin-node"
+ $script_path = "/usr/share/munin/plugins"
+ }
+ }
#$script_path = $script_path_in ? { '' => $script_path, default => $script_path_in }