问题
I am using Puppet 2.7 and I need to convert an array to comma separated list.
$hosts_fqdn= ['host1','host2','host3']
And I need to convert it to desired result: 'host1,host2,host3'
I guess that Puppet 3.2 offers lambda expression - reduce
. But unfortunately that is not possible with 2.7.
回答1:
Function join
from puppetlabs/stdlib:
join($hosts_fqdn,",")
来源:https://stackoverflow.com/questions/18526456/how-to-convert-array-to-comma-separated-string-in-puppet-2-7