[Puppet Users] reduced "verbose" output

2011-02-15 Thread David Bishop
We're starting to integrate mcollective into our puppet usage here at work, and we've discovered a (heretofore unknown) need for more logging "levels". Using the puppetd mcollective agent, we would like to kick off single puppet runs. What we're hoping for is that we could take the output from pup

[Puppet Users] basic question

2009-06-23 Thread David Bishop
I know I'm missing something very basic, but I've been beating my head on this for hours now without making progress. I'm trying to 'tag' nodes with various values, to be pulled later in some home-grown modules. For instance, I want to mark machines as being a webserver, and then in my yum repo m

[Puppet Users] Re: how to exec a directory creation before downloading a file to that directory?

2009-06-24 Thread David Bishop
Re-do that as: class theclass { file { "/opt/scripts": ensure => "directory", owner => "root", group => "root", mode => 755, } file { "/opt/scripts/my_script.sh": ow

[Puppet Users] Re: how to exec a directory creation before downloading a file to that directory?

2009-06-24 Thread David Bishop
#x27;m a newbie on the road, same as you... On Wed, Jun 24, 2009 at 01:29:54PM -0700, Nigel Kersten wrote: > > On Wed, Jun 24, 2009 at 1:24 PM, David Bishop wrote: > > > > Re-do that as: > > > > class theclass { > >        file { "/opt/scripts": > &

[Puppet Users] Re: basic question

2009-06-25 Thread David Bishop
he "group" (class) level, in - say - groups/admin.pp, as long as you follow the "set the variable first" rule. In this case, you would remove that line from the node definition, and change admin.pp to the following: class admin { $webserver = "role"

[Puppet Users] Re: Error 403 on SERVER: Forbidden request:

2009-09-11 Thread David Bishop
On Fri, Sep 11, 2009 at 05:58:11PM +0200, Brice Figureau wrote: > > On Fri, 2009-09-11 at 08:12 -0700, ELTigre wrote: > > I'm having this problem : > > > > When a client vpsXXX tries to get the catalog it returns this error: > > > > vpsXXX:~# puppetd -tv > > warning: peer certificate won't be v

[Puppet Users] Re: cannot parse template when fact does not exist

2009-09-21 Thread David Bishop
On Mon, Sep 21, 2009 at 12:19:39PM -0500, Chris Blumentritt wrote: >I have a separate class that includes the my_project::project_env for all >of my app servers. �I can verify that it is working since the apache conf >file for site is there. �I have been banging my head on a wall with t

[Puppet Users] Re: cannot parse template when fact does not exist

2009-09-21 Thread David Bishop
Never mind. Figured out those clients didn't have the proper 'pluginsync' lines in puppet.conf. David Bishop On Sep 21, 2009, at 1:38 PM, David Bishop wrote: > On Mon, Sep 21, 2009 at 12:19:39PM -0500, Chris Blumentritt wrote: >> I have a separate class that

Re: [Puppet Users] puppet-dashboard - connection to existing puppet environment

2009-12-16 Thread David Bishop
Hrrm. I haven't previously messed with 'reports' or even external node generation. What do I need to do to tie into my existing vanilla nodes.pp-style setup? David On Wed, Dec 16, 2009 at 09:29:33AM -0800, Rein Henrichs wrote: >Hi folks, >Dashboard doesn't (currently) use stored config

Re: [Puppet Users] test for package status

2010-01-25 Thread David Bishop
Ah, but I don't want to ensure that the package is installed. In fact, sometimes it won't be - on purpose. And I want to change the recipes behavior based on that fact. David Bishop On Jan 25, 2010, at 8:11 PM, Peter Meier wrote: -BEGIN PGP SIGNED MESSAGE- Hash:

[Puppet Users] newbie-ish question

2009-05-19 Thread David Bishop
I've been tasked with revamping our existing puppet configs, to make them more manageable/extensible/etc. We have four(ish) groups of machines, that all need similar configs, with slight tweaks - depending on which network they're on, etc. Currently, we have a very "deep" inheritance tree, such t

[Puppet Users] Re: newbie-ish question

2009-05-19 Thread David Bishop
nt production: Syntax error at '.'; expected '}' at /etc/puppet/modules/spong/manifests/init.pp:7 The docs at http://reductivelabs.com/trac/puppet/wiki/LanguageTutorial#selectors reference using the $operatingsystem fact with barewords sunos and redhat. What am I doing wrong? Dav

[Puppet Users] Re: newbie-ish question

2009-05-19 Thread David Bishop
> On May 19, 2009, at 11:57 AM, David Bishop wrote: > > > > > Okay, that was a fairly general question, this is more specific. > > While > > prototyping each of these approaches, I've come across an oddity. I'm > > trying to use a selector to det