[Puppet Users] Re: Module Dependancy

2009-10-20 Thread Luke Kanies
On Oct 20, 2009, at 4:55 PM, Douglas Garstang wrote: > > I have this... > > node base_node { > } > > node child_node inherits base_node { > Yumrepo { > mirrorlist => absent, > enabled => 0, > gpgcheck => 1 > } > yumrepo { > "Core": > enabled => 1, >

[Puppet Users] Re: List of puppet builtin variables apart from those from facter

2009-10-20 Thread Luke Kanies
On Oct 20, 2009, at 8:26 AM, Johan Finnved wrote: > > Is there a list of builtin variables that get addad to thos from > facter. > > I have found $server and $servername and $environment in examples > from the puppet > documentation but I would like a comprehensive list and a way to > dump

[Puppet Users] Re: Arbitrary 3rd party installers

2009-10-20 Thread Luke Kanies
On Oct 20, 2009, at 3:00 PM, Andrew S wrote: > > Hi all, > > I've just started deploying a puppet infrastructure, and have run > across what I'm sure is a common problem - third party software that > does not use the systems package manager, instead using their own > script/binary blob/etc. Now

[Puppet Users] Re: Using the Puppet language to describe installation parameters.

2009-10-20 Thread Luke Kanies
On Oct 20, 2009, at 3:05 PM, James Turnbull wrote: > > 2009/10/21 Cameron : >> I would like to capture the description of a computer platform, >> either >> physical or virtual, and use this description as the basis for >> machine >> generating pre-configured appliances. Puppet appears ideal

[Puppet Users] Re: trouble with puppetrun on 0.24.8

2009-10-20 Thread Luke Kanies
On Oct 19, 2009, at 9:24 PM, kyawai wrote: > > Hello, > > Puppet 0.24.8 on both the client and server, CentOS5.3. > > It is applied repeatedly when puppetrun is executed, > and a lot of report mails are transmitted. > There is host repeatedly applied, > and is host applied only once. > Every time

[Puppet Users] Re: any plans to support pkgutil?

2009-10-20 Thread Luke Kanies
On Oct 19, 2009, at 7:24 PM, windowsrefund wrote: > > Seems that blastwave is all about pkgutil now. Are there any plans to > support this? We don't really target specific providers - in general, people who want the support provide it (heh heh). We've got enough package providers at this po

[Puppet Users] Re: How to handle failures of resources

2009-10-20 Thread Luke Kanies
On Oct 19, 2009, at 7:56 AM, LdvT wrote: > > I wouldn't mind having failure detection. > > Say somehow a bad copy of a .conf file is distributed; and the service > fails to start. > If that can be detected and used as a condition, puppet could than > call up another manifest to drop in a default/

[Puppet Users] Re: access exported resources in template

2009-10-20 Thread Luke Kanies
On Oct 19, 2009, at 6:19 AM, Bernhard Bock wrote: > > Hi, > > I'm trying to develop a class that autogenerates a config file based > on an .erb template. > It shall populate the config file with data exported from various > hosts. > > Some pseudocode to clarify my issue: > > node n1 { > @@myt

[Puppet Users] Re: How to determine if there is a room for a copied file in puppet before copying?

2009-10-20 Thread Luke Kanies
On Oct 19, 2009, at 5:29 AM, Adam Ryczkowski wrote: > > >> Really, though, you probably don't want to use Puppet to copy a 1gb >> file - it still copies the files into memory. > Is this true also for local copies (i.e. copies which doesn't involve > file server, and where source and destination

[Puppet Users] Re: CPU on client ?

2009-10-20 Thread Luke Kanies
On Oct 19, 2009, at 3:01 AM, Xavier Beaudouin wrote: > Hum... People there think it is use to mutch... more than 20% during > a run... I'd expect Puppet to use as much cpu as possible while it's actively configuring a box, unless it's IO bound, and the only way around this is to nice it, w

[Puppet Users] Re: Can't create user on OS X

2009-10-20 Thread Luke Kanies
On Oct 18, 2009, at 9:05 PM, Tony Williams wrote: > > Hi, > > I'm just starting to get a puppet config system running on OS X 10.6 > and have hit a snag. > > I am attempting to create a user and get an error on the client :- > > (//User[ladmin]) Failed to retrieve current state of resource: > und

[Puppet Users] Re: Facter 1.5.7 and operatingsystemrelease

2009-10-20 Thread Ohad Levy
Hi, I for one, thinks that the operatingsystemrelease fact should contain only the major number of the operating system, e.g. for Centos/Rehat 5.4 it should return just 5. the reason behind it is that I rarely use the full release version as a variable, and if I do, I use the lsb facts. this cha

[Puppet Users] Module Dependancy

2009-10-20 Thread Douglas Garstang
I have this... node base_node { } node child_node inherits base_node { Yumrepo { mirrorlist => absent, enabled => 0, gpgcheck => 1 } yumrepo { "Core": enabled => 1, name => "Core", descr => "Software", baseurl => "h

[Puppet Users] Re: sysidcfg file on OpenSolaris 2009.06 client

2009-10-20 Thread windowsrefund
Thank you very much --~--~-~--~~~---~--~~ 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-user

[Puppet Users] Re: List of puppet builtin variables apart from those from facter

2009-10-20 Thread nothings_absolute
I guess I never noticed that the other variables were missing from that file! I guess I can't help out here. On Oct 20, 4:01 pm, James Turnbull wrote: > 2009/10/21 nothings_absolute : > > > > >   You can look in the yaml files on the puppet master to get a list > > and examples of each vari

[Puppet Users] Facter 1.5.7 and operatingsystemrelease

2009-10-20 Thread Christopher
Hello... I just started rolling out facter 1.5.7 (from 1.5.5) on our rhel 5.x servers and ran into http://projects.reductivelabs.com/issues/2312 . In a few of my fileserving classes I use the os release fact to determine what file to serve. e.g. ntpd.conf.5 and ntpd.conf.3 for rhel5 and rhel3

[Puppet Users] Re: List of puppet builtin variables apart from those from facter

2009-10-20 Thread James Turnbull
2009/10/21 nothings_absolute : > > >   You can look in the yaml files on the puppet master to get a list > and examples of each variable. I am not sure where these are on your > system (depends on how it is installed), but you should have one for > each host within /var/??? and probably inside a "

[Puppet Users] Arbitrary 3rd party installers

2009-10-20 Thread Andrew S
Hi all, I've just started deploying a puppet infrastructure, and have run across what I'm sure is a common problem - third party software that does not use the systems package manager, instead using their own script/binary blob/etc. Now my environment doesn't have any NFS at present (and I'm loa

[Puppet Users] Re: Installation problem on Ubuntu 8.04

2009-10-20 Thread James Turnbull
2009/10/21 Adam Ryczkowski : > > It looks that most people writing the puppet Wiki and posting letters > to this list are using puppet at least 0.25. I use a Ubuntu 8.04 > server, where the most recent version of puppet I can get from > repositories is 0.24.4-3. In order to be up-date with others

[Puppet Users] Re: List of puppet builtin variables apart from those from facter

2009-10-20 Thread James Turnbull
2009/10/21 Johan Finnved : > > Is there a list of builtin variables that get addad to thos from facter. > > I have found $server and $servername and $environment in examples from the > puppet > documentation but I would like a comprehensive list and a way to dump all > values. > Good idea - thi

[Puppet Users] Re: Using the Puppet language to describe installation parameters.

2009-10-20 Thread James Turnbull
2009/10/21 Cameron : > I would like to capture the description of a computer platform, either > physical or virtual, and use this description as the basis for machine > generating pre-configured appliances.  Puppet appears ideal for > maintaining the configuration of an appliance once it has been

[Puppet Users] Re: List of puppet builtin variables apart from those from facter

2009-10-20 Thread nothings_absolute
You can look in the yaml files on the puppet master to get a list and examples of each variable. I am not sure where these are on your system (depends on how it is installed), but you should have one for each host within /var/??? and probably inside a "yaml" subdirectory. Here is an example of

[Puppet Users] Re: Stuck with puppet

2009-10-20 Thread nothings_absolute
If you run puppetd with the "--test" and "--debug" options you should be able to see that resource being applied (Or not). It could be that an error in one of these files will be obvious with the output from running it manually with these options. On Oct 20, 11:24 am, Renato Tuveri wrote:

[Puppet Users] Re: Passenger 2.2.5

2009-10-20 Thread nothings_absolute
I have tried 2.2.2, but couldn't get it to compile successfully. It looked like there were some code changes that I could make to the 2.2.2 source to get it working, but applying a single fix (for the solaris related bug) to 2.2.5 seemed like it was the better route to go. I also tried 2.2.4 a

[Puppet Users] Re: Stuck with puppet

2009-10-20 Thread Julian Simpson
Hi, What happens when you run 'puppetd --test' on the client? Best Julian. 2009/10/20 Renato Tuveri : > > Hello a newbie here. > > The situation is that: > > 2 machine one master one client > Puppet 0.24.5 > > This my configuration: > > Client: > > /etc/puppet/puppetd.conf > > [puppetd] > serv

[Puppet Users] Using the Puppet language to describe installation parameters.

2009-10-20 Thread Cameron
Hi, I would like to capture the description of a computer platform, either physical or virtual, and use this description as the basis for machine generating pre-configured appliances. Puppet appears ideal for maintaining the configuration of an appliance once it has been created. I'm wondering

[Puppet Users] Stuck with puppet

2009-10-20 Thread Renato Tuveri
Hello a newbie here. The situation is that: 2 machine one master one client Puppet 0.24.5 This my configuration: Client: /etc/puppet/puppetd.conf [puppetd] server = Asus-Vista-Box logdir = /var/log/puppet vardir = /var/lib/puppet rundir = /var/run master /etc/puppet/manifests/classes/sudo

[Puppet Users] List of puppet builtin variables apart from those from facter

2009-10-20 Thread Johan Finnved
Is there a list of builtin variables that get addad to thos from facter. I have found $server and $servername and $environment in examples from the puppet documentation but I would like a comprehensive list and a way to dump all values. I know that I can add custom facts, but I prefer lookin

[Puppet Users] Re: Installation problem on Ubuntu 8.04

2009-10-20 Thread Avi Miller
Hi Adam, Adam Ryczkowski wrote: > What am I missing? The step that creates the configuration also writes a genconfig = true line into puppet.conf. Remove that line, and puppetmasterd will stop outputting configuration and start acting like a puppetmaster instead. :) cYa, Avi --~--~-~

[Puppet Users] Installation problem on Ubuntu 8.04

2009-10-20 Thread Adam Ryczkowski
It looks that most people writing the puppet Wiki and posting letters to this list are using puppet at least 0.25. I use a Ubuntu 8.04 server, where the most recent version of puppet I can get from repositories is 0.24.4-3. In order to be up-date with others here, I tried to get more recent versio

[Puppet Users] Re: Passenger Woes

2009-10-20 Thread Matt
I'd really bite the bullet Stephen and give passenger 2.2.2 a try. 2009/10/20 Stephen Nelson-Smith : > > Hi, > > On Tue, Oct 20, 2009 at 9:25 AM, Matt wrote: >> >> Stephen FWIW, I has issues getting it to work with passenger 2.2.5 and >> settled on version 2.2.2 installed using the gem install p

[Puppet Users] Re: Passenger 2.2.5

2009-10-20 Thread Matt
Have you tried with passenger 2.2.2? 2009/10/20 nothings_absolute : > > 1st off sorry this is so long... I didn't see any way to attach files > when creating the discussion. > > I am trying to get my puppetmaster (0.25.0) working with passenger > (2.2.5) on Solaris (It works fine using webrick).

[Puppet Users] Passenger 2.2.5

2009-10-20 Thread nothings_absolute
1st off sorry this is so long... I didn't see any way to attach files when creating the discussion. I am trying to get my puppetmaster (0.25.0) working with passenger (2.2.5) on Solaris (It works fine using webrick). At this point I think it "should" work, but get a 400 error (Located below) when

[Puppet Users] Module Dependancy

2009-10-20 Thread Douglas Garstang
I have this... node base_node { } node child_node inherits base_node { Yumrepo { mirrorlist => absent, enabled => 0, gpgcheck => 1 } yumrepo { "Core": enabled => 1, name => "Core", descr => "Software", ba

[Puppet Users] Re: [Puppet-dev] ANNOUNCE: Puppet 0.25.1rc2 available

2009-10-20 Thread Todd Zullinger
R.I.Pienaar wrote: > What's the process for fixes to the redhat spec file? For the spec file shipped in the puppet git repo it's the same as any other bug. Of course, the files in my repo are updated from what's in the puppet git repo for 0.25.1rc1 and rc2. I'll update that spec file and do my b

[Puppet Users] Re: [Puppet-dev] ANNOUNCE: Puppet 0.25.1rc2 available

2009-10-20 Thread R.I.Pienaar
Hello, - "Todd Zullinger" wrote: > James Turnbull wrote: > > Puppet 0.25.1 Release Candidate 2 is now available for testing. > > Packages for Fedora and EPEL are available at: > > http://tmz.fedorapeople.org/repo/puppet/ What's the process for fixes to the redhat spec file? It seems

[Puppet Users] Re: Passenger Woes

2009-10-20 Thread Stephen Nelson-Smith
Hi, On Tue, Oct 20, 2009 at 9:25 AM, Matt wrote: > > Stephen FWIW, I has issues getting it to work with passenger 2.2.5 and > settled on version 2.2.2 installed using the gem install passenger > -version 2.2.2 I'm still on 2.2.5. I've been able to exchange SSL certs, but now if I run puppet on

[Puppet Users] Re: sysidcfg file on OpenSolaris 2009.06 client

2009-10-20 Thread Martin Englund
Hi Adam! On Oct 20, 3:34 am, windowsrefund wrote: > Thank you for the response. Are you aware of any short term work > around? > I've created a bug for it: And you can try my first shot at at fixing it:

[Puppet Users] Re: Passenger Woes

2009-10-20 Thread Matt
Stephen FWIW, I has issues getting it to work with passenger 2.2.5 and settled on version 2.2.2 installed using the gem install passenger -version 2.2.2 Thanks, Matt 2009/10/19 Stephen Nelson-Smith : > > Hello, > > I really didn't expect this to be difficult, but I've been struggling > with thi

[Puppet Users] Re: Passenger Woes

2009-10-20 Thread Stephen Nelson-Smith
Hi Julian, On Mon, Oct 19, 2009 at 7:32 PM, Julian Simpson wrote: > > Is there a file called rewindable_input.rb on the system? Looks like a > missing gem or ruby path issue. Thanks Julian - I think the problem is that rubygem-rack from EPEL is an old version that doesn't contain rewindable_inp