From 4f9dcc00ac29bf05d24be2fc7b5afdaa7a8e56b8 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sun, 21 Feb 2010 11:00:42 -0300 Subject: Quoting variables at munin_node --- manifests/munin.pp | 8 ++++---- 1 file 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 -- cgit v1.2.3