Re: [Puppet Users] Community Package Repos for Puppet Labs products

2011-09-30 Thread Steven L. Seed
Thanks. This is much appreciated! On Sep 12, 2011 2:36 PM, "Michael Stahnke" wrote: > I've had a vision of having packages for Puppet, Dashboard, > mcollective, facter, et al, available in native packaging formats for > as many distributions as possible. > > > I've updated http://yum.puppetlabs.co

Re: [Puppet Users] undefined class results in error instead of warning in 2.7.3

2011-09-30 Thread Steven L. Seed
I see now after trying to post a bug on this that this behavior is now by design as of 2.7. I understand the reasoning behind the change to keep the behavior consistent with including undefined classes in manifests. My problem is being an “external' node classifier, I don’t currently have a way to

Re: [Puppet Users] Re: Clearing delayed job failures in dashboard

2011-11-01 Thread Steven L. Seed
may help rake RAILS_ENV=production reports:prune upto=0 unit=day On Oct 28, 9:32 pm, "Steven L. Seed" wrote: I have a ton of delayed job failures in my dashboard under background tasks. They are mostly failed imports of report yaml files that were deleted. There are over 4 of

Re: [Puppet Users] Re: Clearing delayed job failures in dashboard

2011-11-03 Thread Steven L. Seed
Thanks all. That worked. On 11/03/2011 08:36 AM, Nigel Kersten wrote: FWIW the bug was put in as: https://projects.puppetlabs.com/issues/10442 (adding these comments to it) On Thu, Nov 3, 2011 at 5

[Puppet Users] filebucket cleanup?

2010-04-20 Thread Steven L. Seed
Is there a mechanism in puppet to clean up data in the filebucket after a period of time or do I need to create my own cleanup cron? -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-us...@googlegroups

[Puppet Users] puppetd logs not getting flushed

2010-06-30 Thread Steven L. Seed
Has anyone noticed that the puppetd logs on the client don't get flushed on a regular bases. I'm often looking at the logs and don't see updates for many hours and then later on I'll see messages logged for hours that have past. It's as if there is a buffer that is not getting flushed to disk o

Re: [Puppet Users] puppetd logs not getting flushed

2010-07-25 Thread Steven L. Seed
Thanks for submitting this. It is the case for me that I'm using a file logdest. Eric Sorenson wrote: On Jun 30, 2010, at 8:10 AM, Dan Bode wrote: Hi Eric, On Wed, Jun 30, 2010 at 12:41 AM, Eric Sorenson > wrote: This happens if you have a file logdest. T

[Puppet Users] certain facts not getting displayed on the command line

2010-07-25 Thread Steven L. Seed
When I type facter on the command line without parameters I get a list of several facts. If I try to include a specific fact with the command, I sometimes get a value back and other times I don't. It seems that certain facts aren't returning values on the command line. Inside of puppet they sti

[Puppet Users] puppet dashboard takes a long time to display

2010-08-04 Thread Steven L. Seed
I've been noticing my puppet dashboard is taking longer and longer to load up in my we browser the longer I've used it. I have roughly 1300 nodes being managed by puppet. It's almost as if there is too much data for it to process. I have about 1 month worth of data in my mysql database now. I'v

Re: [Puppet Users] puppet dashboard takes a long time to display

2010-08-16 Thread Steven L. Seed
g the production environment and that initially helped along with purging about 3GB of my report data from the database, but ultimately, the very large log file was impacting things as well. Igal Koshevoy wrote: On 08/04/2010 01:50 PM, Steven L. Seed wrote: I've been noticing my puppet da

[Puppet Users] Using defined(Class[]) on a subclass

2010-09-02 Thread Steven L. Seed
I'm having trouble getting puppet to work when using a conditional to check whether or not a subclass is defined. Here is what I've tried to do if ! defined (Class[server::cobbler]) { # do something } With the above statement I get this error: err: Could not retrieve catalog from remote ser

Re: [Puppet Users] Re: Using defined(Class[]) on a subclass

2010-09-03 Thread Steven L. Seed
ss defined for it. John Lyman wrote: I believe there is a bug, but I can't find it to reference it now. Try this: if ! defined("server::cobler") { # do something } On Sep 2, 5:07 pm, "Steven L. Seed" wrote: I'm having trouble getting puppet to work when us