[Puppet Users] Re: rrdgraph issue on rhel5

2008-09-28 Thread Ross . McKerchar
puppet-users@googlegroups.com wrote on 26/09/2008 22:20:01: > puppetmasterd[32231]: RRD library is missing; cannot store metrics > Any ideas? Thanks. Take a look at http://groups.google.com/group/puppet-users/browse_thread/thread/997c5ac71b29cde3/2cd751e3b3d595e5 hth. -ross -- Ross McKercha

[Puppet Users] Puppet Common Modules: SSH Proposal

2008-09-28 Thread Jeroen van Meeuwen
Hi there, I'd like to collect some feedback on a conceptual simple Puppet Common Module I want to propose; http://reductivelabs.com/trac/puppet/wiki/PuppetCommonModules/SSH I'm thinking about things like; - the way virtual resources are used, - the way operating system specific sub-classes ar

[Puppet Users] Request for Puppet Lightning Talk at FSCONS 2008 in Gothenburg, Sweden

2008-09-28 Thread julipan
Hi all, I'm involved in the organizing of FSCONS 2008, a conference on Free Software and Free Culture that takes place in Gothenburg, Sweden on October 24-26. We received a request for a presentation of the Puppet project and wondered whether anyone on this list would like to deliver a 10-20 min

[Puppet Users] Re: external node trouble

2008-09-28 Thread Daniel Pittman
"Andrew Shafer" <[EMAIL PROTECTED]> writes: > On Tue, Sep 23, 2008 at 12:01 PM, heise <[EMAIL PROTECTED]> wrote: > > I'm trying to get puppet to function with external nodes, i've got a > script that spits out yaml in the following for my test case "classes: > [baseserver, stg2server]

[Puppet Users] Pulling Strings with Puppet

2008-09-28 Thread James Turnbull
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 A number of you have asked me what's the best way to buy the Puppet book that maximises returns to me (and shucks aren't you all nice... :) ). With this in mind I've set-up an Amazon Referral link for the book: http://www.amazon.com/gp/product/15905

[Puppet Users] Re: external node trouble

2008-09-28 Thread AJ Christensen
Sorry, forgot to chuck this in there: irb(main):003:0> classes = [ "baseserver", "stg2server" ] => ["baseserver", "stg2server"] irb(main):004:0> yaml_obj = YAML::dump(classes) => "--- \n- baseserver\n- stg2server\n" irb(main):005:0> ruby_obj = YAML::load(yaml_obj) => ["baseserver", "stg2server"] ir

[Puppet Users] Re: external node trouble

2008-09-28 Thread AJ Christensen
[EMAIL PROTECTED] /tmp$ irb -ryaml irb(main):001:0> classes = [ "baseserver", "stg2server" ] => ["baseserver", "stg2server"] irb(main):002:0> puts classes.to_yaml --- - baseserver - stg2server => nil AFAIK, Puppet uses YAML.load / YAML.dump for object manipulation. "claseses: [baseserver, stg2ser