Re: [Puppet Users] update apt key for puppetlabs and verify signature

2012-08-02 Thread krish
On Tue, Jul 10, 2012 at 7:12 PM, Felix Frank wrote: > Hi, > > thanks for sharing, but apperently you missed the new key being > announced to this group by Matthaus Litteken on July 5th. That would > probably have saved you lots of trouble. > > Cheers, > Felix I did a gpg --refresh-keys; gpg --re

[Puppet Users] Cleaned up contributing guidelines

2012-08-02 Thread Andy Parker
In an effort to streamline and consolidate how code gets submitted to puppet, we've updated the contributing guidelines. The changes were along three fronts: 1. Clarify what to target when submitting patches. 2. Reflect the reality that we take code submissions as github pull requests. 3. Simplify

[Puppet Users] Re: High CPU load / queued passenger requests

2012-08-02 Thread ad
On Thursday, August 2, 2012 8:34:55 AM UTC-5, Jake - USPS wrote: > > If that seemed to help maybe you need to tune your mysql server(s)? I've > tuned mine quite a bit from default OS distro settings using > http://mysqltuner.pl/mysqltuner.pl as I myself am not a mysql expert. Check out Sheeri

Re: [Puppet Users] Setting hostnames in razor

2012-08-02 Thread Nan Liu
On Thu, Aug 2, 2012 at 11:02 AM, Kyle Sexton wrote: > Is razor only really useful for configuring mass numbers of hosts? I've > been playing with it and one thing I'm not grasping is how to set a hostname > if I'm only building one host, say wiki01.foo.com. For each server like > that would I ne

Re: [Puppet Users] Issues with installing some modules !!!

2012-08-02 Thread Nan Liu
On Thu, Aug 2, 2012 at 11:19 AM, Ryan Coleman wrote: > On Tue, Jul 31, 2012 at 11:53 PM, Rakesh K wrote: >> For mysql I am using the module >> https://github.com/puppetlabs/puppetlabs-mysql >> >> What I am observing is mysql is gets installed and everything but no db is >> added, also intermitten

Re: [Puppet Users] Issues with installing some modules !!!

2012-08-02 Thread Ryan Coleman
On Tue, Jul 31, 2012 at 11:53 PM, Rakesh K wrote: > For mysql I am using the module > https://github.com/puppetlabs/puppetlabs-mysql > > What I am observing is mysql is gets installed and everything but no db is > added, also intermittently the password is not set, it is neither not blank > nor do

Re: [Puppet Users] Re: Running "make" via puppet manifest

2012-08-02 Thread Kristof Willaert
Hi, On Thu, Aug 2, 2012 at 6:25 PM, Mike Reed wrote: > Thank you all for the responses. I think the solution of scripting the > install and calling the script via puppet is an interesting thought. > Thanks as well for the suggested reading. just my thoughts on this: if you are going to perfo

Re: [Puppet Users] Issues with installing some modules !!!

2012-08-02 Thread Ryan Coleman
Hi Rakesh, I'll take a look at this and see if I can reproduce what you're experiencing. Sorry for the delay in getting help out to you. Could you answer a couple questions to help me replicate? What operating system and version are you using? What version of Puppet are you using? What version o

[Puppet Users] Setting hostnames in razor

2012-08-02 Thread Kyle Sexton
All, Is razor only really useful for configuring mass numbers of hosts? I've been playing with it and one thing I'm not grasping is how to set a hostname if I'm only building one host, say wiki01.foo.com. For each server like that would I need a separate policy, or is there some other way people

[Puppet Users] Re: Running "make" via puppet manifest

2012-08-02 Thread Mike Reed
Thank you all for the responses. I think the solution of scripting the install and calling the script via puppet is an interesting thought. Thanks as well for the suggested reading. Cheers, Mike On Wednesday, August 1, 2012 12:56:11 PM UTC-7, Mike Reed wrote: > > Hello all, > > I've been ban

Re: [Puppet Users] duplicate resources across defined types

2012-08-02 Thread Joe Topjian
> > I made a few inline comments > Thank you. > should be fixed in master. > Yup, looks good. I will open a pull request for this. -- Joe Topjian Systems Administrator Cybera Inc. www.cybera.ca Cybera is a not-for-profit organization that works to spur and support innovation, for the econom

Re: [Puppet Users] duplicate resources across defined types

2012-08-02 Thread Dan Bode
On Thu, Aug 2, 2012 at 7:09 AM, Joe Topjian wrote: > Hi Dan, > > >> virtual resources are definitely intended to solve the same problem, but >> they would not work for this use case b/c multiple declarations of the same >> virtual resource still result in the duplicate definition failures. >> >>

[Puppet Users] How to index into array from a function

2012-08-02 Thread Despite
Is there a clean way to index into an array returned by a function? When I try to do it directly, I get a parser error. I have to assign the array to a new variable and index that. # This fails $dc = split($domain,'[.]')[0] # This works $split_domain = split($domain,'[.]') $dc = $split_domain

Re: [Puppet Users] duplicate resources across defined types

2012-08-02 Thread Joe Topjian
Hi Dan, > virtual resources are definitely intended to solve the same problem, but > they would not work for this use case b/c multiple declarations of the same > virtual resource still result in the duplicate definition failures. > > virtual resources can also be problematic b/c collecting resou

Re: [Puppet Users] can dashboard and foreman be used at the same time?

2012-08-02 Thread banjer
Yeah I figured PuppetDB wasn't supported by Foreman yet, but thought I'd give it a try since I hadn't heard a firm yes or no on the subject. I'm happy with the new setup so far with Foreman being the ENC. On Thursday, August 2, 2012 9:59:23 AM UTC-4, llo...@oreillyauto.com wrote: > > > > On Th

Re: [Puppet Users] can dashboard and foreman be used at the same time?

2012-08-02 Thread llow...@oreillyauto.com
On Thursday, August 2, 2012 8:54:58 AM UTC-5, banjer wrote: > > I just switched from using Puppet Dashboard with PuppetDB 0.9 to using > Foreman 1.0.0. This is on CentOS 6.3. I've been unable to get Foreman to > work PuppetDB, so I had to revert to using the "old" way of storeconfigs > with

Re: [Puppet Users] can dashboard and foreman be used at the same time?

2012-08-02 Thread banjer
I just switched from using Puppet Dashboard with PuppetDB 0.9 to using Foreman 1.0.0. This is on CentOS 6.3. I've been unable to get Foreman to work PuppetDB, so I had to revert to using the "old" way of storeconfigs without puppetdb. Perhaps I had something set up incorrectly, but I could

[Puppet Users] Re: High CPU load / queued passenger requests

2012-08-02 Thread Jake - USPS
If that seemed to help maybe you need to tune your mysql server(s)? I've tuned mine quite a bit from default OS distro settings using http://mysqltuner.pl/mysqltuner.pl as I myself am not a mysql expert. I've also separated mysql to a different server then what my puppetmasters run on. Regar

[Puppet Users] Re: Issues with installing some modules !!!

2012-08-02 Thread Rakesh K
Can Someone please help me out with this ??? On Wednesday, August 1, 2012 12:23:22 PM UTC+5:30, Rakesh K wrote: > > Hi, > > I am new to puppet and have started evaluating various features in last > few days. I am not a developer and am mostly going to use the modules > available on github or p

Re: [Puppet Users] rand losing its randomness after using fqdn_rand

2012-08-02 Thread Felipe Ortega
El miércoles, 1 de agosto de 2012 20:30:52 UTC+2, Calvin Walton escribió: > > On Wed, 2012-08-01 at 18:58 +0100, R.I.Pienaar wrote: > > From: "Eric Shamow" > > > Not sure that this should be considered a bug in fqdn_rand - the idea > > > with fqdn_rand is that it should generate the same rando

Re: [Puppet Users] trouble with puppetlabs-mysql module; ignores db and user creation

2012-08-02 Thread tom s
Ok, so it turns out this module has a dependancy on pluginsync being on. On Tuesday, 31 July 2012 15:26:49 UTC+1, tom s wrote: > > hmmm, it shows up, but doesn't seem to do anything about it: > > debug: > /Stage[main]//Node[puppetclient.tomtest.com]/Mysql::Db[testdb]/Database_grant[testdb@loc