How to convert array to comma separated string in

2020-07-03 04:36发布

问题:

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,",")


标签: puppet