[Puppet Users] schedule resource user

2014-04-04 Thread Andreas Dvorak
Dear all, I would like so schedule the resource user. Sometime spezial user need a locally set password that should be reset hat night. Unfortunately the resouce user does not have the option schedule. Does somebody have a solution for that? Best regards Andreas -- You received this message

[Puppet Users] MySql configuration for Puppet-Dashboard

2014-04-04 Thread dinesh logaraj
I am currently working with Puppet Open Source and configuring Puppet Dashboard as well. Is that possible to have the MySql database (used for Puppet Dashboard) in separate aws ec2-instance or as aws rds mysql instances? Please let me know the configuration changes needed in puppet dashboard.

[Puppet Users] Re: 3.5 breaks yumrepo resource

2014-04-04 Thread Alessandro Franceschi
Confirm. On Friday, April 4, 2014 7:56:24 AM UTC+2, Jo wrote: > > 3.5 breaks yum repos using mirrorurl and no baseurl. > https://tickets.puppetlabs.com/browse/PUP-2155 > > On Apr 3, 2014, at 2:32 PM, Eric Sorenson > > > wrote: > > Puppet 3.5.0 is now available as an official release.

[Puppet Users] Re: schedule resource user

2014-04-04 Thread Andreas Dvorak
I have made something wrong, now it does work Am Freitag, 4. April 2014 10:48:39 UTC+2 schrieb Andreas Dvorak: > > Dear all, > > I would like so schedule the resource user. > Sometime spezial user need a locally set password that should be reset hat > night. > > Unfortunately the resouce user doe

[Puppet Users] Re: Service[foo] fails under --noop if its package has never been installed

2014-04-04 Thread Sven Sporer
Hi, as John already noted, I'd avoid relying on --noop output to gauge the success of a Puppet run[1], but instead get in the habit of performing real tests. This means testing the bootstrap process of new servers, using Vagrant and serverspec or something similar. [1] not entirely, of course;

[Puppet Users] Re: Error while Puppet Sync on PuppetMaster

2014-04-04 Thread Sven Sporer
Hi, this could be related to https://groups.google.com/forum/#!topic/puppet-users/wKFMlPNAFZ0 Am Donnerstag, 3. April 2014 13:25:56 UTC+2 schrieb iliyas shirol: > > Greetings! > > We are seeing the following exception on one of our Puppet Master host > while its performing a puppet sync with it

[Puppet Users] Re: Error: Multilib version problems found

2014-04-04 Thread jcbollinger
On Thursday, April 3, 2014 10:42:26 AM UTC-5, amogh patel wrote: > > Thanks for your reply John. I read about your first solution which you > posted earlier but I'm trying the second one. > > If you need both the i686 version and the x86_64 version of that package installed, then you should k

Re: [Puppet Users] puppet class require fails depending on declaration order

2014-04-04 Thread jcbollinger
On Thursday, April 3, 2014 10:31:40 AM UTC-5, David Portabella wrote: > > *> **Agree with John that you want to completely avoid using the > parameterized style declaration of classes. Better to use > 'include' statements and set all of your params in Hiera. * > > That's an interesting discuss

Re: [Puppet Users] Re: Service[foo] fails under --noop if its package has never been installed

2014-04-04 Thread Drew Raines
Sven Sporer wrote: Hi, as John already noted, I'd avoid relying on --noop output to gauge the success of a Puppet run[1], but instead get in the habit of performing real tests. This means testing the bootstrap process of new servers, using Vagrant and serverspec or something similar. That's

[Puppet Users] Re: Announce: Facter 2.0.1

2014-04-04 Thread Chris Handy
I am really looking forward to the complex data structures. I was wondering how this will work with hiera going forward, specifically with the hiera.yaml hierarchy? Lets say that my hierarchy uses "role" and "app" facts to determine which level of the hierarchy to invoke. Would I be able to

[Puppet Users] My dynamic config-file environment broke in 3.5

2014-04-04 Thread Brian Pitts
Hi, After I upgraded my puppetmaster to 3.5, my clients can no longer find my modules. I had my modules broken up into three directories * modules: third-party modules I install via r10k * lib-modules: library/generic modules I wrote * app-modules: application/wrapper modules I wrote I expresse

[Puppet Users] Re: Puppet fails to run if ruby1.8 is not installed.

2014-04-04 Thread Tom Poulton
I was running into this problem as well so I ran: *sudo cp -r /usr/lib/ruby/site_ruby/1.8/* /usr/local/share/ruby/site_ruby/2.0/* /usr/local/share/ruby/site_ruby/2.0/ is part of the $LOAD_PATH so I figured why not stick the files in there and see what happens, now I can run *puppet --version*

Re: [Puppet Users] Re: Puppet fails to run if ruby1.8 is not installed.

2014-04-04 Thread Nick Cammorato
Did anyone try using the EL7 RPM? I've had success with testing with it in the RHEL7 beta, so if amazon has moved closer to RHEL7, it should be worth a shot. --Nick On Fri, Apr 4, 2014 at 3:40 PM, Tom Poulton wrote: > I was running into this problem as well so I ran: > > *sudo cp -r /usr/lib/

[Puppet Users] fileserving in parser function

2014-04-04 Thread Rich Siegel
In my loadcsv parser function I do (I stripped out all non-relevant parts) ``` require 'puppet/file/serving/configuration' # on windows this fails - path is the args[0]: # path = 'puppet:///modules/name/myfile.csv' content = Puppet::FileServing::Content.indirection.find(path) ``` just trying t

[Puppet Users] Re: Is there a puppet module for tomcat and apache

2014-04-04 Thread Alessandro Franceschi
I expect this to work: https://github.com/example42/puppet-tomcat even if not in all the different possible tomcat versions / OS combinations, The tomcat::instance define is in production in various Ubuntu/Debian environments. https://github.com/example42/puppet-tomcat/blob/master/manifests/inst

[Puppet Users] Puppet 3.5.0 Recalled

2014-04-04 Thread Eric Sorenson
Hi, after a number of reports of problems on two major features in 3.5.0, the team got together this afternoon and made the decision to pull the release. When 3.5.0 went final, users found breaking issues with the `yumrepo` resource type and with dynamic environments which hadn't been uncovered

[Puppet Users] Re: My dynamic config-file environment broke in 3.5

2014-04-04 Thread Eric Sorenson
Hi Brian, thanks for the report -- this was exactly the problem that led us to recall the 3.5.0 release just now. There is a workaround that is pretty simple, if you're willing to stick with it: just set `environmentpath=/some/nonexistent/dir` in the [master] section of your puppet.conf. This w

[Puppet Users] Re: My dynamic config-file environment broke in 3.5

2014-04-04 Thread Brian Pitts
Hi Eric, I'm glad you're taking this and the yumrepo issue (which also bit me) seriously. I've already downgraded to 3.4.3, but I'll try 3.5.1 as soon as it's available. On Friday, April 4, 2014 7:55:21 PM UTC-5, Eric Sorenson wrote: > > Hi Brian, thanks for the report -- this was exactly the p

[Puppet Users] Re: Puppet fails to run if ruby1.8 is not installed.

2014-04-04 Thread Charlie Sharpsteen
On Friday, April 4, 2014 12:40:44 PM UTC-7, Tom Poulton wrote: > > I was running into this problem as well so I ran: > > *sudo cp -r /usr/lib/ruby/site_ruby/1.8/* > /usr/local/share/ruby/site_ruby/2.0/* > > /usr/local/share/ruby/site_ruby/2.0/ is part of the $LOAD_PATH so I > figured why not stic

[Puppet Users] Re: Puppet Agent's webrick crashes every 30sec.

2014-04-04 Thread Peter Bauer
thank you very much John! I will investigate this further with Wireshark. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscr...@googlegroups.c