summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorandreas <andreas@immerda.ch>2007-12-06 09:14:08 +0000
committerandreas <andreas@immerda.ch>2007-12-06 09:14:08 +0000
commit515b8d2ad32199cf622ef761a3c5759b7e064e93 (patch)
treec2fc5056a3ca5471aaba30c4bf649d63953dd7cc /manifests
parent85a0fbe78632307e3ca580d4477a02973fc40752 (diff)
cannot reassign ... correction
Diffstat (limited to 'manifests')
-rw-r--r--manifests/plugin.pp6
1 files changed, 5 insertions, 1 deletions
diff --git a/manifests/plugin.pp b/manifests/plugin.pp
index 7a6e6af..f35bf8f 100644
--- a/manifests/plugin.pp
+++ b/manifests/plugin.pp
@@ -7,7 +7,7 @@ define munin::plugin (
$script_path = '',
$config = '')
{
- $script_path_default = "/usr/share/munin/plugins"
+ #$script_path_default = "/usr/share/munin/plugins"
case $operatingsystem {
debian: {
$munin_node_service = "munin-node"
@@ -17,6 +17,10 @@ define munin::plugin (
$munin_node_service = "munin"
$script_path_default = "/usr/libexec/munin/plugins"
}
+ default: {
+ $munin_node_service = "munin"
+ $script_path_default = "/usr/libexec/munin/plugins"
+ }
}
$script_path_correct = $script_path ? { '' => $script_path_default, default => $script_path }