Re: [Puppet Users] apt repository appears to have dependency issue with latest release (3.2.1)

2013-05-25 Thread Matthew Kennedy
Why are there two separate repos, especially when you are unable to install a package from main without the other? On May 25, 2013 11:52 AM, "Arnaud Gomes-do-Vale" wrote: > Eric Sorenson writes: > > > We'll do a better job in the future of > > (a) pointing out the necessity of the dependencies r

Re: [Puppet Users] apt repository appears to have dependency issue with latest release (3.2.1)

2013-05-25 Thread Arnaud Gomes-do-Vale
Eric Sorenson writes: > We'll do a better job in the future of > (a) pointing out the necessity of the dependencies repo in the release > notes > (b) featuring the Upgrading guide ( > http://docs.puppetlabs.com/guides/upgrading.html ) more prominently, > as it has best practice for safe upgradin

[Puppet Users] PuppetDB 1.3/ HSQLDB vs Postgres

2013-05-25 Thread Worker Bee
Hi everyone; I was just wondering if anyone has any opinion/information on the pros and cons of using the built-in HSQLDB vs Postgres. Thanks! Bee -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receivin

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

2013-05-25 Thread David Schmitt
On 2013-05-25 10:11, Alexander Bien wrote: On 24.05.2013 16:58, Ken Barber wrote: Its probably the nagios resource, its well known for not scaling when the files contain a lot of entries. That would explain why your PuppetDB is showing low load - as its probably not the bottleneck. I second th

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

2013-05-25 Thread Alexander Bien
On 24.05.2013 16:58, Ken Barber wrote: Its probably the nagios resource, its well known for not scaling when the files contain a lot of entries. That would explain why your PuppetDB is showing low load - as its probably not the bottleneck. I second that. We have mysql storeconfigs, about 5000 S

[Puppet Users] Re: "Future" parser and "return value" of resource definition

2013-05-25 Thread Simon Marechal
Also, this is accepted : collect([1,2,3]) |$x| { file { "/tmp/b$x": content => collect([1,2,3]) |$y| { $y }; } } and this isn't : collect([1,2,3]) |$x| { file { "/tmp/b$x": con