aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/munin.pp8
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/munin.pp b/manifests/munin.pp
index b239787..2e32117 100644
--- a/manifests/munin.pp
+++ b/manifests/munin.pp
@@ -6,13 +6,13 @@ define munin_node($port = '4949') {
}
$munin_allow = $node_munin_allow ? {
- '' => $global_munin_allow,
- default => $node_munin_allow,
+ '' => "$global_munin_allow",
+ default => "$node_munin_allow",
}
$munin_port = $node_munin_port ? {
- '' => $port,
- default => $node_munin_port,
+ '' => "$port",
+ default => "$node_munin_port",
}
include munin::client