From: Silvio Rhatto Date: Sun, 21 Feb 2010 14:00:42 +0000 (-0300) Subject: Quoting variables at munin_node X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=4f9dcc00ac29bf05d24be2fc7b5afdaa7a8e56b8;p=puppet-nodo.git Quoting variables at munin_node --- 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