[Puppet Users] Additional Puppet Server Failure

2016-02-22 Thread Matthew Ceroni
I have the following setup. 1) Existing PuppetServer version 1.1.3 2) New PuppetServer version 1.1.3 installation (new DC) I followed the following documentation on setting up multiple Puppet Masters

Re: [Puppet Users] exec not executing

2016-02-22 Thread Tim Dunphy
Hi Peter, It looks like it's the quotes in your command. The entire command is > wrapped in double quotes, and the actual mysql command should be wrapped in > single quotes, but isn't. Also you have admin, localhost, and secret in > single quotes that aren't escaped. You will need to escape all

[Puppet Users] Proper (or elegant) way to handle doing some based on contents of a file.

2016-02-22 Thread Scott Walker
I'm slowly getting up to speed on puppet (coming over from chef but honestly haven't used either in probably 3 years so I'm relearning the learning curve.). We are using puppet 3.7.1 on our hosts, what I am trying to do is this. I have a file /etc/install-class which when we kickstart a

[Puppet Users] Re: Help needed - I'm very new to puppet

2016-02-22 Thread Scott Walker
Have you tried that tutorials, they are very well done and do take you step by step. On Monday, 22 February 2016 10:23:16 UTC-5, Istvan Kassai wrote: > > Hi folks, > > In the last half year I tried to learn puppet (for about 4-5 times) but > haven't got so far. > Yesterday I decided I won't

[Puppet Users] Announcement: danzilio/letsencrypt version 1.0.0

2016-02-22 Thread David Danzilio
Hello! I'm excited to announce the release of version 1.0.0 of danzilio/letsencrypt . This release brings a lot of big changes; some of the biggest include Puppet 3 compatibility and the ability to install the Let's Encrypt client from

[Puppet Users] Help needed - I'm very new to puppet

2016-02-22 Thread Istvan Kassai
Hi folks, In the last half year I tried to learn puppet (for about 4-5 times) but haven't got so far. Yesterday I decided I won't give up. Gathered a lots of docs, howtos, tutorials etc. What I achieved: I installed two ubuntu 15.10s into my KVM environment. One for puppet master and the

[Puppet Users] Re: Do services have an implicit dependency on the binary executable?

2016-02-22 Thread jcbollinger
On Friday, February 19, 2016 at 4:32:37 PM UTC-6, David Karr wrote: > > I just started reading about Puppet a few days ago, so some of my > questions may be simple. > > I noticed that you can specify explicit dependencies between resources in > several ways. There are also a small number of

Re: [Puppet Users] exec not executing

2016-02-22 Thread Cristian Falcas
Hi, It's because you are using "refreshonly => true,". In order to work, you need to use something like this after you includes: Class['bacula::config'] ~> Class['bacula::exec'] If you want your exec to run after configuration changes. Or remove the refreshonly parameter if you want it to

Re: [Puppet Users] exec not executing

2016-02-22 Thread Craig Dunn
On Mon, Feb 22, 2016 at 8:14 AM, Tim Dunphy wrote: > Hey guys, > > I wrote an exec class for one of my modules. And for some reason, on puppet > runs it's not executing. > > Here's the class: > > class bacula::exec { > > exec { 'create.mysql.admin.user': > path =>