rlandster
rlandster

Reputation: 7825

How do you concatenate strings in a Puppet .pp file?

Here is my naive approach:

# puppet/init.pp
$x = 'hello ' + 
     'goodbye'

This does not work. How does one concatenate strings in Puppet?

Upvotes: 57

Views: 85359

Answers (6)

Andrey Regentov
Andrey Regentov

Reputation: 3737

As stated in docs, you can just use ${varname} interpolation. And that works with function calls as well:

$mesosZK = "zk://${join($zookeeperservers,':2181,')}:2181/mesos"
$x = "${dirname($file)}/anotherfile"

Could not use {} with function arguments though: got Syntax error at '}'.

Upvotes: 0

czervik
czervik

Reputation: 2555

Keyword variable interpolation:

$value = "${one}${two}"

Source: http://docs.puppetlabs.com/puppet/4.3/reference/lang_variables.html#interpolation

Note that although it might work without the curly braces, you should always use them.

Upvotes: 81

Mifeet
Mifeet

Reputation: 13608

Another option not mentioned in other answers is using Puppet's sprintf() function, which functions identically to the Ruby function behind it. An example:

$x = sprintf('hello user %s', 'CoolUser')

Verified to work perfectly with puppet. As mentioned by chutz, this approach can also help you concatenate the output of functions.

Upvotes: 21

mc0e
mc0e

Reputation: 2820

You could use the join() function from puppetlabs-stdlib. I was thinking there should be a string concat function there, but I don't see it. It'd be easy to write one.

Upvotes: 0

Niels Basjes
Niels Basjes

Reputation: 10642

I use the construct where I put the values into an array an then 'join' them. In this example my input is an array and after those have been joined with the ':2181,' the resulting value is again put into an array that is joined with an empty string as separator.

$zookeeperservers = [ 'node1.example.com', 'node2.example.com', 'node3.example.com' ]
$mesosZK = join([ "zk://" , join($zookeeperservers,':2181,') ,":2181/mesos" ],'')

resulting value of $mesosZK

zk://node1.example.com:2181,node2.example.com:2181,node3.example.com:2181/mesos

Upvotes: 25

Albert Turri
Albert Turri

Reputation: 361

The following worked for me.

puppet apply -e ' $y = "Hello" $z = "world" $x = "$y $z" notify { "$x": } '
notice: Hello world
notice: /Stage[main]//Notify[Hello world]/message: defined 'message' as 'Hello world'
notice: Finished catalog run in 0.04 seconds

The following works as well:

$abc = "def"

file { "/tmp/$abc":

Upvotes: 2

Related Questions