Re: [Puppet Users] What the correct way to downgrade version with puppet? (CentOS 6.4)

2013-11-11 Thread Derek Harkness
You can specify a version string for each package. package { [ ‘php-xml’, ‘php-common’ ]: ensure => “5.3.3”, } You might have to break them out and add in some dependency. On Nov 10, 2013, at 6:08 , shlo.af...@gmail.com wrote: > Hi, > I'm using Puppet to downgrade php from 5.5.5 to 5.3.

Re: [Puppet Users] What the correct way to downgrade version with puppet? (CentOS 6.4)

2013-11-12 Thread Derek Harkness
p-5.5.5 and after that install > php-5.3.3. > When trying to install php-5.3.3 when php-5.5.5 exist it exit with errors > about conflict in version. > How can I ensure that specific version of php is absent? > > On Monday, November 11, 2013 4:38:12 PM UTC+2, Derek Harkness wrote:

Re: [Puppet Users] Deploy puppet agent to all servers

2014-01-28 Thread Derek Harkness
This is kind of a boot strapping problem how to deploy puppet which can then manage your puppet. Tools like razor, kickstart, automation linux installs are all pretty good at solving the problem at install time. Doing it after the system is up and running is usually best handled by a ssh for l

Re: [Puppet Users] Need Ruby help for facts (inline_template) --> <%= classes.collect { |k, v| v }.sort.join(" ") %> --> empty

2017-04-17 Thread Derek Harkness
In your example it looks like classes is an array not a hash. Should be able to just do classes.join(“ “). Derek > On Apr 17, 2017, at 00:46, Denny Fuchs wrote: > > Hello, > > for my Icinga2, I want to add all classes to vars, like described in > https://goo.gl/z798HG (page 41). I added the