diff options
author | Jerome Charaoui <jcharaoui@cmaisonneuve.qc.ca> | 2015-05-08 16:00:21 -0400 |
---|---|---|
committer | Jerome Charaoui <jcharaoui@cmaisonneuve.qc.ca> | 2015-05-08 16:00:21 -0400 |
commit | 74ea10a6a1d4f4c1624d85d3d3795eaf819df10c (patch) | |
tree | 7727924af0364703a8b1bc5adcd31a9509dbd559 | |
parent | 52006a80266fc0a8994d731295f17f76610add3e (diff) | |
download | puppet-shorewall-74ea10a6a1d4f4c1624d85d3d3795eaf819df10c.tar.gz puppet-shorewall-74ea10a6a1d4f4c1624d85d3d3795eaf819df10c.tar.bz2 |
Make sure MUNINCOLLECTOR join() gets an array in munin rule
-rw-r--r-- | manifests/rules/munin.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/rules/munin.pp b/manifests/rules/munin.pp index 0c86abe..a20a4e0 100644 --- a/manifests/rules/munin.pp +++ b/manifests/rules/munin.pp @@ -1,10 +1,10 @@ class shorewall::rules::munin( $munin_port = '4949', - $munin_collector = '127.0.0.1', + $munin_collector = ['127.0.0.1'], $collector_source = 'net' ){ shorewall::params { 'MUNINPORT': value => $munin_port } - shorewall::params { 'MUNINCOLLECTOR': value => join($munin_collector,',') } + shorewall::params { 'MUNINCOLLECTOR': value => join(any2array($munin_collector),',') } shorewall::rule{'net-me-munin-tcp': source => "${collector_source}:\$MUNINCOLLECTOR", destination => '$FW', |