Re: [Puppet Users] Puppetmaster with apache/passenger on SL6

2012-05-13 Thread Daniel Sung
That's most likely your problem. Make sure to chkconfig off the puppetmaster service if you're using httpd. Regards, Daniel On 13 May 2012, at 14:00, Denmat wrote: > Hi, > > Have you still got your puppetmaster service running? Don't need that running > when using httpd and passenger. > >

[Puppet Users] Re: Variables inside variables

2016-03-31 Thread Daniel Sung
I achieve this by using the getvar function in stdlib. For example: getvar("::network_${::gateway_dev}") Regards, Daniel On Thursday, 31 March 2016 11:04:45 UTC+1, Jonathan Gazeley wrote: > > Hi folks, > > Short version: > > I want to use a variable inside a variable to access a fact. Is this

[Puppet Users] ‘Contains’ conditional operator in PQL?

2019-09-27 Thread Daniel Sung
Hello, I have a fact that is an array of strings and I would like to return all certnames that contain an element in that array. I’ve tried to use the in operator but that doesn’t work that way around and ~ does sort of work but it’ll match a substring of an element in the array. What is the be