[Puppet Users] Re: revoking certificate failed

2009-01-18 Thread Paul Johnson
Hi Felix, thanks for you reply :) 2009/1/19 Felix Schäfer > > Am 19.01.2009 um 03:14 schrieb Paul Johnson: > > > Yeah, I read that documentation, but this still seems not so clear > > to me. > > I thought someone using gentoo would have a little more insight in ssl > certificate matters, but an

[Puppet Users] NYC Puppet meeting: Feb 3rd at Westside Brewery 6:30pm

2009-01-18 Thread Brian Gupta
For more info on venue, I am posting the "Google Maps" link: http://tinyurl.com/6u4jdx As a recap we are meeting from 6:30-8:30pm on February 3rd at the Westside Brewery. Please try and RSVP to the puppet-nyc list, as currently I am planning on reserving a table for 12, and need to know if I nee

[Puppet Users] Re: revoking certificate failed

2009-01-18 Thread Felix Schäfer
Am 19.01.2009 um 03:14 schrieb Paul Johnson: > Yeah, I read that documentation, but this still seems not so clear > to me. I thought someone using gentoo would have a little more insight in ssl certificate matters, but anyway, here it goes :-) > Here is my situation: > I installed puppet on

[Puppet Users] Re: [Puppet-dev] Re: creating a custom type to replace a line in a file

2009-01-18 Thread Teyo Tyree
On Sun, Jan 18, 2009 at 7:57 PM, chakkerz wrote: > > Awesome > > Thanks for the Template idea Teyo, that looks exactly like what i > want. > > So i created my templte sshd_config.erb > > Port 22 > Protocol 2 > ListenAddress <%= listenaddress %> > #ListenAddress :: > > SyslogFacility AUTHPRIV > Pe

[Puppet Users] Augeas type proposal; long.

2009-01-18 Thread Robin Lee Powell
Just to be clear: I am offering to write what I describe below if it seems acceptable to others (and if I get the time). I love the idea of Augeas, and I love that Puppet has built-in support for it. However, I'm finding that I'm routinely unable to do things with the Puppet Augeas type that I

[Puppet Users] Re: revoking certificate failed

2009-01-18 Thread Paul Johnson
Hi Felix, thanks for your reply. Yeah, I read that documentation, but this still seems not so clear to me. Here is my situation: I installed puppet on several hosts and signed certificates for them on master with puppetca some time ago. Recently I decided to rewrite my manifests and deny all server

[Puppet Users] Puppet at Linux.conf.au

2009-01-18 Thread James Turnbull
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all Just to let everyone know I am speaking on Puppet at Linux.conf.au this week. My session is on Wednesday. If anyone is at the conference feel free to look me up - happy to discuss Puppet stuff (which may involve beer). Cheers James Turnbul

[Puppet Users] Using deb package management for gems (was Re: NYC Puppet Meetup)

2009-01-18 Thread Larry Ludwig
> Also, I am > looking to explore: debgem vs dpkg-tools (Two tools to make deploying > gems via Debian packages > easier)http://www.debgem.com/ andhttp://reprocessed.org/tags/dpkg-tools Why not let Puppet install via ruby's gems? I started down a similar path with CentOS/RH creating RPMs for

[Puppet Users] Re: NYC Puppet Meetup

2009-01-18 Thread Brian Gupta
After talking with Larry, I proposed "Westside Brewery" as the location. I was gonna reserve a table for 12. (Which we could adjust depending on how many people want to come) Anyone have any objections to venue? On Jan 18, 2009 11:42 AM, "Brian Gupta" wrote: Looking at the calendar Feb. 3rd is

[Puppet Users] Re: Need onlyifnot (or something) for Augeas

2009-01-18 Thread windowsrefund
Peter, Check out David Lutterkort's responses to my 2009-01-16 thread entitled "[Puppet Users] Work in progress: Using augeas to manage /etc/ exports" Best, Adam On Jan 18, 7:16 am, Peter Meier wrote: > Hi > > > There is, as far as I can tell, no way to make Augeas *not* do > > anything if a n

[Puppet Users] Re: NYC Puppet Meetup

2009-01-18 Thread Brian Gupta
Looking at the calendar Feb. 3rd is doable. Let's try to quickly narrow down a location, before spreading the word. Any requirements? Assuming we want to meet somewhere that has food? For now I will go ahead and put it on the "NYC User Groups" Google Calendar with a location TBD for now. (6:30-8:

[Puppet Users] Re: is the "line" directive/option deprecated now?

2009-01-18 Thread Peter Meier
Hi > class sudo inherits david { > > line { david_sudoer: > file => "/etc/sudoers", > line => "david ALL=(ALL) ALL", > ensure => present, > require => Package[sudo], > } > > } > > Does this still exist in the docs? this a d

[Puppet Users] Re: Need onlyifnot (or something) for Augeas

2009-01-18 Thread Peter Meier
Hi > There is, as far as I can tell, no way to make Augeas *not* do > anything if a node exists. What I want is for the Augeas block to > be skipped if the augtool command > > match /files/etc/exports/dir /foo > > would return true. Since I don't know which dir number it'll be, I > ca

[Puppet Users] is the "line" directive/option deprecated now?

2009-01-18 Thread kevin
So I am looking at david's manifests to try to get a clue and i see this: class sudo inherits david { line { david_sudoer: file => "/etc/sudoers", line => "david ALL=(ALL) ALL", ensure => present, require => Package[sudo], } }