Re: [Puppet-dev] [PATCH/facter 1/1] Remove Solaris from the list of confined systems. It won't get the original lsb facts, and it's nonsensical too.

2011-03-14 Thread Ben Hughes
On Mon, Mar 14, 2011 at 05:19:29PM -0700, James Turnbull wrote: > Is there a ticket for this Ben? Nope. I'll go make one. https://projects.puppetlabs.com/issues/6714 -- Ben Hughes || http://www.puppetlabs.com/ -- You received this message because you are subscribed to the Google Groups "Pup

Re: [Puppet-dev] [PATCH/facter 1/1] Fixed #6695 - Updated id fact for Darwin et al

2011-03-14 Thread James Turnbull
James Turnbull wrote: > Signed-off-by: James Turnbull > --- > Local-branch: tickets/master/6695 Typo'ed before I hit enter... :( James -- James Turnbull Puppet Labs 1-503-734-8571 -- You received this message because you are subscribed to the Google Groups "Puppet Developers" group. To post

[Puppet-dev] [PATCH/facter 1/1] Fixed #6695 - Updated id fact for Darwin et al

2011-03-14 Thread James Turnbull
Signed-off-by: James Turnbull --- Local-branch: tickets/master/6695 lib/facter/id.rb | 11 ++- spec/unit/id_spec.rb | 27 +++ 2 files changed, 29 insertions(+), 9 deletions(-) create mode 100755 spec/unit/id_spec.rb diff --git a/lib/facter/id.rb b/lib/fa

[Puppet-dev] [PATCH/facter 1/1] Fixed #6695 - Updated id fact for Darwin et al

2011-03-14 Thread James Turnbull
Signed-off-by: James Turnbull --- Local-branch: tickets/master/6695 lib/facter/id.rb | 11 ++- spec/unit/id_spec.rb | 27 +++ 2 files changed, 29 insertions(+), 9 deletions(-) create mode 100755 spec/unit/id_spec.rb diff --git a/lib/facter/id.rb b/lib/fa

Re: [Puppet-dev] [PATCH/facter 1/1] Remove Solaris from the list of confined systems. It won't get the original lsb facts, and it's nonsensical too.

2011-03-14 Thread James Turnbull
Ben Hughes wrote: > Signed-off-by: Ben Hughes > --- > lib/facter/lsbmajdistrelease.rb |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) Is there a ticket for this Ben? Thanks James -- James Turnbull Puppet Labs 1-503-734-8571 -- You received this message because you are subscri

[Puppet-dev] [PATCH/facter 1/1] Remove Solaris from the list of confined systems. It won't get the original lsb facts, and it's nonsensical too.

2011-03-14 Thread Ben Hughes
Signed-off-by: Ben Hughes --- lib/facter/lsbmajdistrelease.rb |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/facter/lsbmajdistrelease.rb b/lib/facter/lsbmajdistrelease.rb index 843a0af..3659541 100644 --- a/lib/facter/lsbmajdistrelease.rb +++ b/lib/facter/lsbmajdis

Re: [Puppet-dev] Re: Help with creating a python puppet module using curl "pycurl" and auth.conf issues

2011-03-14 Thread Markus Roberts
This is what I have in my auth.conf file: > > path / > auth no > allow * > > > However I still get this error > > '/' incorrect authenticated value: no 0x15e56090> > So that looks like a puppet error message wrapped in a python error report. So I'm assuming you saw this client side. If you run t

Re: [Puppet-dev] [PATCH/facter 1/3] inital stab at adding a puppetdoc-esque fact description to facts.

2011-03-14 Thread Daniel Pittman
The series looks good, and it is nice to have any documentation on the facts we support. In the long term I want to work out a more structured way to capture this data, but we are better getting the data now than waiting for the cupcakes-and-unicorns structured mechanism. Regards, Daniel --

Re: [Puppet-dev] Re: Help with creating a python puppet module using curl "pycurl" and auth.conf issues

2011-03-14 Thread Brice Figureau
On 14/03/11 22:14, Corey Osman wrote: > This is what I have in my auth.conf file: > > path / > auth no > allow * > > > However I still get this error > > '/' incorrect authenticated value: no 0x15e56090> I don't think the problem is to be found on the puppet side, based on the error message.

[Puppet-dev] Re: Help with creating a python puppet module using curl "pycurl" and auth.conf issues

2011-03-14 Thread Corey Osman
This is what I have in my auth.conf file: path / auth no allow * However I still get this error '/' incorrect authenticated value: no On Mar 14, 4:14 pm, Matt Robinson wrote: > On Mon, Mar 14, 2011 at 12:56 PM, Corey Osman wrote: > > Hi, > > > I am on a quest to create a python module for

[Puppet-dev] [PATCH/facter 3/3] Added more rdoc style documentation for base facts.

2011-03-14 Thread Ben Hughes
Signed-off-by: Ben Hughes --- lib/facter/facterversion.rb |9 + lib/facter/id.rb |6 +- lib/facter/memory.rb | 17 + lib/facter/selinux.rb|9 + lib/facter/timezone.rb |9 + lib/facter/uptime.rb

[Puppet-dev] [PATCH/facter 1/3] inital stab at adding a puppetdoc-esque fact description to facts.

2011-03-14 Thread Ben Hughes
From: Ben H Signed-off-by: Ben Hughes --- lib/facter/architecture.rb | 13 + lib/facter/domain.rb| 20 lib/facter/ec2.rb | 10 ++ lib/facter/fqdn.rb | 11 +++ lib/facter/hardwareisa.rb |

[Puppet-dev] [PATCH/puppet 1/1] (#6707) Fix typo in rest_authconfig.rb

2011-03-14 Thread nfagerlund
"Where" -> "were." Capitalize "ACL." Signed-off-by: nfagerlund --- lib/puppet/network/rest_authconfig.rb |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/puppet/network/rest_authconfig.rb b/lib/puppet/network/rest_authconfig.rb index 7a6147a..e606761 100644 --- a/li

Re: [Puppet-dev] Help with creating a python puppet module using curl "pycurl" and auth.conf issues

2011-03-14 Thread Matt Robinson
On Mon, Mar 14, 2011 at 12:56 PM, Corey Osman wrote: > Hi, > > I am on a quest to create a python module for puppet in order to use > with my application.  The whole idea beyond this "pypuppet" module is > to just wrap the rest api calls into a python module in order to make > it easy for python b

[Puppet-dev] Help with creating a python puppet module using curl "pycurl" and auth.conf issues

2011-03-14 Thread Corey Osman
Hi, I am on a quest to create a python module for puppet in order to use with my application. The whole idea beyond this "pypuppet" module is to just wrap the rest api calls into a python module in order to make it easy for python born apps to integrate with puppet. I have just started testing s

[Puppet-dev] Re: OT: Puppet Camp Dates

2011-03-14 Thread Jose Palafox
Yes, the last date is incorrect, that's been adjusted. Puppet Camp is just the 28th and 29th. Thanks for pointing that out! Speaking of Puppet Camp the schedule [1] has been released along with speaker bios, the food menu, social events schedule, and other tidbits of useful information. [1] http:

Re: [Puppet-dev] [PATCH/facter 1/1] Fixed #6695 - Updated id fact for Darwin et al

2011-03-14 Thread Daniel Pittman
On Mon, Mar 14, 2011 at 10:48, Paul Nasrat wrote: > On 14 March 2011 17:44, Daniel Pittman wrote: >> On Mon, Mar 14, 2011 at 10:32, Paul Nasrat wrote: >>> On 14 March 2011 16:52, Daniel Pittman wrote: On Sun, Mar 13, 2011 at 19:57, James Turnbull wrote: >> >> […] It would be re

Re: [Puppet-dev] [PATCH/facter 1/1] Fixed #6695 - Updated id fact for Darwin et al

2011-03-14 Thread Paul Nasrat
On 14 March 2011 17:44, Daniel Pittman wrote: > On Mon, Mar 14, 2011 at 10:32, Paul Nasrat wrote: >> On 14 March 2011 16:52, Daniel Pittman wrote: >>> On Sun, Mar 13, 2011 at 19:57, James Turnbull >>> wrote: > > […] >>> It would be really good to see some tests to verify that we keep >>> deliv

Re: [Puppet-dev] [PATCH/facter 1/1] Fixed #6695 - Updated id fact for Darwin et al

2011-03-14 Thread Paul Nasrat
On 14 March 2011 17:30, Daniel Pittman wrote: > On Mon, Mar 14, 2011 at 10:29, Paul Nasrat wrote: >> On 14 March 2011 15:46, James Turnbull wrote: >>> Paul Nasrat wrote: On 14 March 2011 02:57, James Turnbull wrote: > Signed-off-by: James Turnbull This list is kinda excessiv

Re: [Puppet-dev] [PATCH/facter 1/1] Fixed #6695 - Updated id fact for Darwin et al

2011-03-14 Thread Daniel Pittman
On Mon, Mar 14, 2011 at 10:32, Paul Nasrat wrote: > On 14 March 2011 16:52, Daniel Pittman wrote: >> On Sun, Mar 13, 2011 at 19:57, James Turnbull >> wrote: […] >> It would be really good to see some tests to verify that we keep >> delivering this fact on the appropriate platforms added; we ha

Re: [Puppet-dev] [PATCH/facter 1/1] Fixed #6695 - Updated id fact for Darwin et al

2011-03-14 Thread Paul Nasrat
On 14 March 2011 16:52, Daniel Pittman wrote: > On Sun, Mar 13, 2011 at 19:57, James Turnbull wrote: >> >> Signed-off-by: James Turnbull >> --- >> Local-branch: tickets/master/6695 >>  lib/facter/id.rb |    2 +- >>  1 files changed, 1 insertions(+), 1 deletions(-) >> >> diff --git a/lib/facter/i

Re: [Puppet-dev] [PATCH/facter 1/1] Fixed #6695 - Updated id fact for Darwin et al

2011-03-14 Thread Daniel Pittman
On Mon, Mar 14, 2011 at 10:29, Paul Nasrat wrote: > On 14 March 2011 15:46, James Turnbull wrote: >> Paul Nasrat wrote: >>> On 14 March 2011 02:57, James Turnbull wrote: Signed-off-by: James Turnbull >>> >>> This list is kinda excessive, is there anything it doesn't work for >>> explicitly

Re: [Puppet-dev] Getting Started - Helping Support MS Windows

2011-03-14 Thread Daniel Pittman
On Sun, Mar 13, 2011 at 14:28, TJ Yang wrote: > On Sun, Mar 13, 2011 at 2:19 PM, jflowers wrote: >> I am interested in using Puppet.  I work in a mixed environment: *nix, >> Windows, and Mac.  The majority of our environment is MS Windows. > > Same here or Who isn't ? ;) > I hope puppetlab can se

Re: [Puppet-dev] [PATCH/facter 1/1] Fixed #6695 - Updated id fact for Darwin et al

2011-03-14 Thread Paul Nasrat
On 14 March 2011 15:46, James Turnbull wrote: > Paul Nasrat wrote: >> On 14 March 2011 02:57, James Turnbull wrote: >>> Signed-off-by: James Turnbull >> >> This list is kinda excessive, is there anything it doesn't work for >> explicitly (ie do we need the confine). >> > > Solaris.  Hence the ot

Re: [Puppet-dev] Getting Started - Helping Support MS Windows

2011-03-14 Thread Daniel Pittman
On Sun, Mar 13, 2011 at 12:19, jflowers wrote: > I am interested in using Puppet.  I work in a mixed environment: *nix, > Windows, and Mac.  The majority of our environment is MS Windows.  I > am prepared to jump in an implement missing features, fix bugs, add > new features, and generally improv

[Puppet-dev] Ken Barber

2011-03-14 Thread James Turnbull
Hi all We're pleased to announce Ken Barber has joined the Puppet Labs Professional Services team. Ken will be based in London and help us out with customers in Europe. Ken has spent the last few years implementing Puppet at various organisations in the UK and will be well known to many of you.

Re: [Puppet-dev] [PATCH/facter 1/1] Fixed #6695 - Updated id fact for Darwin et al

2011-03-14 Thread Daniel Pittman
On Sun, Mar 13, 2011 at 19:57, James Turnbull wrote: > > Signed-off-by: James Turnbull > --- > Local-branch: tickets/master/6695 >  lib/facter/id.rb |    2 +- >  1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/lib/facter/id.rb b/lib/facter/id.rb > index c2c3594..f3de1a9 100644 >

Re: [Puppet-dev] [PATCH/facter 1/1] Fixed #6695 - Updated id fact for Darwin et al

2011-03-14 Thread James Turnbull
Paul Nasrat wrote: > On 14 March 2011 02:57, James Turnbull wrote: >> Signed-off-by: James Turnbull > > This list is kinda excessive, is there anything it doesn't work for > explicitly (ie do we need the confine). > Solaris. Hence the other command in the file. I don't like the list either b

Re: [Puppet-dev] [PATCH/facter 1/1] Fixed #6695 - Updated id fact for Darwin et al

2011-03-14 Thread Paul Nasrat
On 14 March 2011 02:57, James Turnbull wrote: > > Signed-off-by: James Turnbull This list is kinda excessive, is there anything it doesn't work for explicitly (ie do we need the confine). > --- > Local-branch: tickets/master/6695 >  lib/facter/id.rb |    2 +- >  1 files changed, 1 insertions(+)

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

2011-03-14 Thread Luke Kanies
I had forgotten that we are using class variables to enable/disable CLI options. *shudder* I think supporting anything other than a boolean in the 'desc' value is unnecessary - just accept true/false, and all that code gets a good bit simpler. Also, I think this is a bit strange when it comes t