[Puppet Users] Re: centos 7 boxes on vagrant cloud?

2014-10-09 Thread Chris Handy
awesome, thank you! On Wednesday, October 8, 2014 5:15:25 PM UTC-4, Scott Schneider wrote: I was wondering when there will be official centos 7 boxes from puppet labs on https://vagrantcloud.com/puppetlabs? Also it would be nice to have a link on the puppet vagrant cloud homepage to what

[Puppet Users] centos 7 boxes on vagrant cloud?

2014-10-06 Thread Chris Handy
Hey all, I was wondering when there will be official centos 7 boxes from puppet labs on https://vagrantcloud.com/puppetlabs? Also it would be nice to have a link on the puppet vagrant cloud homepage to what repo these boxes are generated from like the chef project does to

[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 use

Re: [Puppet Users] Multiple server roles using hiera and facts

2013-12-02 Thread Chris Handy
i have heard of people using json in fact values to express arrays. On Monday, December 2, 2013 8:25:20 AM UTC-5, Matthias Saou wrote: On Sun, 1 Dec 2013 20:58:34 -0800 (PST) Shiva Narayanaswamy shiva.nar...@gmail.com javascript: wrote: I want to implement a scenario where I can mix and

Re: [Puppet Users] Puppet/Nagios/PuppetDB slow performance

2013-11-11 Thread Chris Handy
If you are looking to implement it via the puppetdbquery module that Ken was referring to earlier, here is some code to do so with. I recently implemented this approach with my own setup and it worked out great. About 2500 nagios_service resources went from taking 20-30 minutes to about 2.

Re: [Puppet Users] How to make sure my common module executes before all other ones

2013-03-21 Thread Chris Handy
. additionally, you can use PuppetLabs stdlib module and take advantage of the anchor pattern sparingly. Here's a good example of its use: https://github.com/adrienthebo/puppetlabs-mrepo/blob/master/manifests/init.pp Hope that helps! W On Mar 20, 2013, at 5:04 PM, Chris Handy chris

[Puppet Users] How to make sure my common module executes before all other ones

2013-03-20 Thread Chris Handy
I am running puppet 3.1.1 and have a site.pp which roughly looks like this site.pp: node basenode { include common } node 'server1' inherits basenode { include role::appserver } node 'server2' inherits basenode { include role::webserver } And my common module includes lots of different

Re: [Puppet Users] Puppet broken in upgrade from 3.0.1 to 3.1.0

2013-02-21 Thread Chris Handy
I also started having issues with puppet and passenger when moving to 3.1.0. Not exactly the same, but I set it up fresh on a new server with passenger and now get 403 errors whenever i try to check in. I reran my puppet passenger setup in 3.0.1 and it works flawlessly. Is there any more

[Puppet Users] Re: What is the 'puppet console'?

2012-12-03 Thread Chris Handy
I love this post on the evolution. The one thing that is missing which im pretty sure I have seen somewhere is the ability to properly name your hiera variables with the proper package structure such that you dont even need to do a hiera lookup, they will just get auto injected. Can someone