Re: [Puppet Users] parameters set with array

2014-07-20 Thread David Schmitt
On 2014-07-18 08:57, OS wrote: Hello all, I am newbie to puppet and sorry if it is a silly question. What is wrong with my manifest? define webapp ($domain,$port){ file { "/tmp/${name}": > This is working and creating the files as /tmp/test , /tmp/test1 etc c

[Puppet Users] parameters set with array

2014-07-18 Thread OS
Hello all, I am newbie to puppet and sorry if it is a silly question. What is wrong with my manifest? define webapp ($domain,$port){ file { "/tmp/${name}": > This is working and creating the files as /tmp/test , /tmp/test1 etc content => "Server:${port}", }