diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-02-21 11:00:42 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-02-21 11:00:42 -0300 |
commit | 4f9dcc00ac29bf05d24be2fc7b5afdaa7a8e56b8 (patch) | |
tree | 5988d8cfeb61b09fbe08ff53ccede7f7b2933ce8 | |
parent | 16e019be09c8767607a941e8f79ec8a89fd81f38 (diff) | |
download | puppet-nodo-4f9dcc00ac29bf05d24be2fc7b5afdaa7a8e56b8.tar.gz puppet-nodo-4f9dcc00ac29bf05d24be2fc7b5afdaa7a8e56b8.tar.bz2 |
Quoting variables at munin_node
-rw-r--r-- | manifests/munin.pp | 8 |
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 |