[Puppet-dev] [PATCH/facter 1/1] Adds a desc option to Facter.add blocks

2011-03-11 Thread James Turnbull
Facter.add(:factname) do config :fact = value desc This describes the fact end The resulting descriptions are displayed: $ facter --desc Or: $ facter -D This is purely experimental - smarter people than I can probably come up with a better way of doing this. I've documented the

[Puppet-dev] [PATCH/puppet 1/1] Fixed #6681 - Remove --force-yes option from aptitude is used

2011-03-11 Thread James Turnbull
Signed-off-by: James Turnbull ja...@lovedthanlost.net --- lib/puppet/provider/package/aptitude.rb |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/lib/puppet/provider/package/aptitude.rb b/lib/puppet/provider/package/aptitude.rb index 8bdf984..1f25bc5 100755 ---

Re: [Puppet-dev] [PATCH/facter 1/1] Fix #6679 - Added Scientific Linux to operatingsystem fact

2011-03-11 Thread Paul Nasrat
On 11 March 2011 00:52, James Turnbull ja...@lovedthanlost.net wrote: Thanks to James Goddard for the patch +1 Signed-off-by: James Turnbull ja...@lovedthanlost.net --- Local-branch: ticket/master/6679  lib/facter/operatingsystem.rb     |    2 ++  spec/unit/operatingsystem_spec.rb |   12

[Puppet-dev] [PATCH/puppet 1/1] Fixed #6681 - Remove --force-yes option from aptitude is used

2011-03-11 Thread James Turnbull
Signed-off-by: James Turnbull ja...@lovedthanlost.net --- lib/puppet/provider/package/aptitude.rb |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/lib/puppet/provider/package/aptitude.rb b/lib/puppet/provider/package/aptitude.rb index 8bdf984..2eafd3e 100755 ---

Re: [Puppet-dev] [PATCH/puppet 1/1] Fixed #6681 - Remove --force-yes option from aptitude is used

2011-03-11 Thread Nigel Kersten
On Fri, Mar 11, 2011 at 8:26 AM, James Turnbull ja...@lovedthanlost.net wrote: Signed-off-by: James Turnbull ja...@lovedthanlost.net ---  lib/puppet/provider/package/aptitude.rb |    1 +  1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/lib/puppet/provider/package/aptitude.rb

Re: [Puppet-dev] ANNOUNCE: Puppet 2.6.6 available!

2011-03-11 Thread Jeff McCune
On Wed, Mar 9, 2011 at 5:30 PM, Jacob Helwig ja...@puppetlabs.com wrote: This maintenance release fixes two issues with Puppet 2.6.5. Enterprise Linux 5 RPM's have been posted to the Puppet Labs prosvc repository as well. This is available via rsync if you're keeping a local mirror. I

[Puppet-dev] Re: problems with puppet-load.rb

2011-03-11 Thread Jason Wright
Sorry to raise this thread from the dead, but I wanted to close it off as 2.6.x has fixed the problem with 400 errors which I originally reported. Thanks, Jason -- His face disappeared. If someone has no face left, you know it's serious. -- You received this message because you are subscribed

Re: [Puppet-dev] Re: problems with puppet-load.rb

2011-03-11 Thread James Turnbull
Jason Wright wrote: Sorry to raise this thread from the dead, but I wanted to close it off as 2.6.x has fixed the problem with 400 errors which I originally reported. Jason Was there a ticket for this? Regards James -- James Turnbull Puppet Labs 1-503-734-8571 -- You received this

Re: [Puppet-dev] [PATCH/puppet 1/1] Fixed #6681 - Remove --force-yes option from aptitude is used

2011-03-11 Thread Daniel Pittman
On Fri, Mar 11, 2011 at 09:18, Nigel Kersten ni...@puppetlabs.com wrote: On Fri, Mar 11, 2011 at 8:26 AM, James Turnbull ja...@lovedthanlost.net wrote: Signed-off-by: James Turnbull ja...@lovedthanlost.net ---  lib/puppet/provider/package/aptitude.rb |    1 +  1 files changed, 1

Re: [Puppet-dev] Re: problems with puppet-load.rb

2011-03-11 Thread Jason Wright
I'm pretty sure that Brice opened one but I can't remember the number, sorry. Jason On Fri, Mar 11, 2011 at 10:20 AM, James Turnbull ja...@puppetlabs.com wrote: Jason Wright wrote: Sorry to raise this thread from the dead, but I wanted to close it off as 2.6.x has fixed the problem with 400

Re: [Puppet-dev] Re: [PATCH/puppet 1/1] (#3669) Find servers via DNS SRV record

2011-03-11 Thread Jacob Helwig
On Thu, 16 Dec 2010 11:37:49 +1100, Daniel Pittman wrote: On Thu, Dec 16, 2010 at 10:40, Nigel Kersten ni...@puppetlabs.com wrote: On Wed, Dec 15, 2010 at 2:05 PM, Daniel Pittman dan...@rimspace.net wrote: On Thu, Dec 16, 2010 at 08:04, Ohad Levy ohadl...@gmail.com wrote: On Wed, Dec 15,

Re: [Puppet-dev] Re: (#3669) Find servers via DNS SRV record

2011-03-11 Thread Jacob Helwig
On Thu, 16 Dec 2010 20:09:37 +1100, Daniel Pittman wrote: On Thu, Dec 16, 2010 at 17:52, Andrew Forgue andrew.for...@gmail.com wrote: Here's a new version of it. Thanks so much. I looked over the code, and I can't see anything objectionable to it. It looks like it does the right

[Puppet-dev] [PATCH/puppet 1/1] (#6689) Make inventory_active_record terminus search quickly

2011-03-11 Thread Nick Lewis
This terminus behaves the same on all supported DB platforms, by performing a limited portion of its query in SQL, and the rest of the comparison in Ruby. Its results are consistent with the YAML terminus. Paired-With: Jesse Wolfe Signed-off-by: Nick Lewis n...@puppetlabs.com ---