Re: [Puppet Users] Problem defining exported resources

2011-03-18 Thread Greg Sutcliffe
On Thursday, March 17, 2011 2:41:06 PM UTC, Felix.Frank wrote: I call possible bug on this one. I don't see an open issue that sounds quite like this, so you may want to report this. http://projects.puppetlabs.com/projects/puppet/issues/new Cheers, Felix Thanks Felix - nice to know I'm

Re: [Puppet Users] RFC: Refactoring the mount provider.

2011-03-18 Thread Christian Kauhaus
Am 17.03.2011 18:40, schrieb Nigel Kersten: TL;DR The mount provider has used a mish-mash of checking fstab and actual mount state to determine state. A possible solution we're looking at is splitting into two types, one that manages /etc/fstab (or /etc/filesystem on other OSes), and one that

Re: [Puppet Users] parameterized classes and variable inheritance

2011-03-18 Thread Guillaume Rousse
Le 18/03/2011 00:03, Ashley Gould a écrit : I am exploring usage of parameterized classes. I hit a wall when trying to override values of parameters in a node definition that inherits the class from a parent node. Is there a way to do this, or must I include the class only in the child

Re: [Puppet Users] State of the pkgutil provider?

2011-03-18 Thread Dominic Cleal
On 17/03/11 16:07, Mark Phillips wrote: On 17 Mar 2011, at 05:42, James Turnbull wrote: Dominic Cleal wrote: Nobody has been looking at it, it would be great if you and Mark want to and I'd be happy to help. I haven't even seen any examples of pkgutil catalogs with multiple versions, so

Re: [Puppet Users] Re: ANNOUNCE: Facter 1.5.9rc2

2011-03-18 Thread Thomas Bendler
Hi Todd, 2011/3/18 Todd Zullinger t...@pobox.com [...] If you find problems with the packaging, please let me know. If you find other bugs, please file them in redmine: http://projects.puppetlabs.com/projects/facter/issues [...] don't know if it's a bug or related to the packages but

[Puppet Users] MCollective facts with uppercase

2011-03-18 Thread Thomas Bendler
Hi @all, don't know if this is the correct list for a question like this, but maybe someone knows. Is there a reason why mc-facts don't support facts with uppercase inside but mc-inventory does? thbe@ocean:~$ mc-facts custRole Could not call remote agent: Input fact does not match validation

Re: [Puppet Users] MCollective facts with uppercase

2011-03-18 Thread R.I.Pienaar
- Original Message - Hi @all, don't know if this is the correct list for a question like this, but maybe someone knows. Is there a reason why mc-facts don't support facts with uppercase inside but mc-inventory does? best place is the mcollective-users list thbe@ocean:~$ mc-facts

Re: [Puppet Users] Re: ANNOUNCE: Facter 1.5.9rc2

2011-03-18 Thread AlberT
I can confirm, already opened a ticket: https://projects.puppetlabs.com/issues/6763 -- You received this message because you are subscribed to the Google Groups Puppet Users group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to

[Puppet Users] [PATCH/facter] (#6763) Use Facter::Util::Resolution.exec for arp

2011-03-18 Thread Todd Zullinger
The arp command is in /sbin on Fedora/RHEL, not /usr/sbin. Using Facter::Util::Resolution.exec is preferable to hard-coding the path. --- lib/facter/arp.rb |8 +--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/facter/arp.rb b/lib/facter/arp.rb index 65cf4c3..5035ad0

[Puppet Users] Monitoring abstraction and test driven infrastructure deployment

2011-03-18 Thread Al @ Lab42
Good afternoon (morning|night) all, I've just posted an article on how I manage automatic monitoring with Puppet http://www.example42.com/?q=Test_Driven_Puppet_Infrastructures_deployment and besides the shameless spam on this list I'd like to take this occasion to raise again a topic discussed

[Puppet Users] Debian 6 puppetmaster package

2011-03-18 Thread Jon
Hi, I'm trying to get puppet and puppetmaster running on a fresh Debian 6 VM. I've installed both using 'apt-get install'. The client seems fine, however when I try to start puppetmaster I get the following error: /usr/lib/ruby/1.8/openssl/x509-internal.rb:22:in `create_ext': subjectAltName =

Re: [Puppet Users] Re: ANNOUNCE: Facter 1.5.9rc2

2011-03-18 Thread Emiliano Gabrielli (aka AlberT)
Confirmed and already opened a ticket: https://projects.puppetlabs.com/issues/6763 On Mar 18, 2011, at 12:38 PM, Thomas Bendler wrote: Hi Todd, 2011/3/18 Todd Zullinger t...@pobox.com [...] If you find problems with the packaging, please let me know. If you find other bugs, please

[Puppet Users] Adding a mailer to Postfix master.cf via Augeas

2011-03-18 Thread Jeremy
Has anyone had any success with adding a new mailer to the Postfix master.cf using Augeas? I know the commands work if I use augtool but I'm having problems translating it into a Puppet module configuration. I'm attempting to set Postfix up to use Amazon Web Services Simple Email Service as

[Puppet Users] Re: Adding a mailer to Postfix master.cf via Augeas

2011-03-18 Thread Luke Bigum
On Mar 18, 2:50 pm, Jeremy jtbo...@gmail.com wrote:                 set aws-email/command pipe flags=R user=nobody argv=/ usr/local/bin/ses-send-email -r -k /etc/postfix/aws-credentials -f $ {sender} ${recipient}, Try: 'set aws-email/command pipe flags=R user=nobody argv=/ usr/local/bin/

Re: [Puppet Users] Monitoring abstraction and test driven infrastructure deployment

2011-03-18 Thread TJ Yang
Hi, Al I am interested to participate the effort to add system monitoring function/feature into puppet. I like following equation ;) puppet=configuration management + asset management + system monitoring I am a xymon(hobbit/bb) user, I only see your doc mention nagios, so I could be helpful.

Re: [Puppet Users] Inventory service and dashboard 1.1.0 rc1

2011-03-18 Thread Jacob Helwig
On Thu, 17 Mar 2011 21:32:29 -0700, Luke Baker wrote: I just set up the latest dashboard release candidate in hopes of trying out the new inventory service. After modifying the puppet- dashboard config to use the inventory service and after changing my auth.conf I gave it a whirl but ran

[Puppet Users] Re: parameterized classes and variable inheritance

2011-03-18 Thread jcbollinger
On Mar 17, 6:03 pm, Ashley Gould ago...@ucop.edu wrote: I'm hoping to avoid using subclasses, because there would have to be oodles of them to accomodate the all the variations between nodes. node default {     class { sudoers: } } node 'sl11lab02' inherits default {     # this runs

Re: [Puppet Users] apache service start problem

2011-03-18 Thread Marc Zampetti
The root issue is that the service resource only depends upon the Package. You need to include all of the other resources in the require, or chain the requires in such a way that all of the other work is done before puppet tries to start apache. That will fix the double run issue. Marc

[Puppet Users] Puppet Camp Announcements

2011-03-18 Thread Jose Palafox
Hi, We've set up a speaker line up, menu, and a bunch of other useful information about Puppet Camp on our website. The event is going to be awesome, we've got some great speakers, and social events planned. Nearly half the team at Puppet Labs will be in attendance at the event, and we're really

[Puppet Users] Re: Puppet Camp Announcements

2011-03-18 Thread Al @ Lab42
+1 for Deepak as Master of Ceremonies! -- You received this message because you are subscribed to the Google Groups Puppet Users group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscr...@googlegroups.com.

Re: [Puppet Users] Monitoring abstraction and test driven infrastructure deployment

2011-03-18 Thread Al @ Lab42
On Friday, March 18, 2011 5:33:25 PM UTC+1, T.J. Yang wrote: Hi, Al I am interested to participate the effort to add system monitoring function/feature into puppet. I like following equation ;) puppet=configuration management + asset management + system monitoring Yeah, I totally

Re: [Puppet Users] Re: parameterized classes and variable inheritance

2011-03-18 Thread Ashley Gould
On Fri, Mar 18, 2011 at 11:15:56AM -0700, jcbollinger wrote: On Mar 17, 6:03 pm, Ashley Gould ago...@ucop.edu wrote: I'm hoping to avoid using subclasses, because there would have to be oodles of them to accomodate the all the variations between nodes. node default {     class {