Re: [Puppet Users] Melbourne puppet catch up?

2011-04-05 Thread Ben Hughes
On Wed, Apr 06, 2011 at 03:39:28PM +1000, Denmat wrote: > Open invitation to those that can attend. Those that can't, maybe another > time? Sounds grand. Is there a Melbourne devops meet up this month too? I hear the last one went pretty well. -- Ben Hughes || http://www.puppetlabs.com/ --

[Puppet Users] Melbourne puppet catch up?

2011-04-05 Thread Denmat
Hi list, Some weeks ago some asked if there was a Melbourne puppet group. There isn't to my knowledge but I would be happy to organize an irregular catch up in Melbourne where we can talk puppet and other things of interest. I was thinking the Wednesday the 20th of this month would be good - so

[Puppet Users] Re: case insensitive regex (or if statement)

2011-04-05 Thread Jeffrey
On Apr 5, 3:48 pm, Jacob Helwig wrote: > On Tue, 05 Apr 2011 15:24:12 -0700, Jeffrey wrote: > > > Hi folks, > > > Does anyone know how to do case-insensitive regex in a puppet > > manifest?  I tried obvious things, like adding an 'i' at the end of my > > regex (ala perl) but that didn't work. > >

Re: [Puppet Users] case insensitive regex (or if statement)

2011-04-05 Thread Nan Liu
On Tue, Apr 5, 2011 at 3:48 PM, Jacob Helwig wrote: > On Tue, 05 Apr 2011 15:24:12 -0700, Jeffrey wrote: >> >> Hi folks, >> >> Does anyone know how to do case-insensitive regex in a puppet >> manifest?  I tried obvious things, like adding an 'i' at the end of my >> regex (ala perl) but that didn't

Re: [Puppet Users] case insensitive regex (or if statement)

2011-04-05 Thread Jacob Helwig
On Tue, 05 Apr 2011 15:24:12 -0700, Jeffrey wrote: > > Hi folks, > > Does anyone know how to do case-insensitive regex in a puppet > manifest? I tried obvious things, like adding an 'i' at the end of my > regex (ala perl) but that didn't work. > > if ($operatingsystem =~ /(centos|redhat|oel)/)

[Puppet Users] Re: err: Could not request certificate: [and then....??]

2011-04-05 Thread Robert Neville
k *really* weird... tried it again, but without the no-daemonizeand it worked. stopped the agent and started it again with no-daemonize, and now everything's finewhat the heck? On Tue, Apr 5, 2011 at 3:54 PM, robneville73 wrote: > Google search is failing me today... > > I've found a

[Puppet Users] case insensitive regex (or if statement)

2011-04-05 Thread Jeffrey
Hi folks, Does anyone know how to do case-insensitive regex in a puppet manifest? I tried obvious things, like adding an 'i' at the end of my regex (ala perl) but that didn't work. if ($operatingsystem =~ /(centos|redhat|oel)/) { ... } The following works (for centos), but it's a bit clunky, i

[Puppet Users] err: Could not request certificate: [and then....??]

2011-04-05 Thread robneville73
Google search is failing me today... I've found a ton of troubleshooting guides that tell you what to do when you get that error message from puppet agent. But all of the examples include some sort of reason/message following that string.I get nothing. Here's as much detail on what I've done

[Puppet Users] Re: puppet fails to retrieve catalog

2011-04-05 Thread Cody Robertson
Try running the client with --trace and running the master in the foreground / see if any traffic is reaching the master. Also are you behind a firewall / iptables? -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send em

Re: [Puppet Users] package installation

2011-04-05 Thread Patrick
On Apr 5, 2011, at 4:28 AM, CHEBRIAN wrote: > Dear ALL, > > I tried to install mysql server in client machine from puppet > server . > > I am getting the following error > > There are problems and -y was used without --force-yes . \ > > how to say the puppet master to install forcefully . >

[Puppet Users] Re: AboutUs is Hiring a DevOps Engineer

2011-04-05 Thread samg
Exactly. Sorry if that was confusing. AboutUs is in Portland, Oregon, and looking for a local SysAdmin, or one willing to relocate. Our old SysAdmin who left our systems in great shape has moved to Munich Germany. Thanks, Sam Goldstein -- Director of Engineering AboutUs.org On Apr 5, 1:22 am,

[Puppet Users] Invoking qualified definition in Ruby DSL

2011-04-05 Thread Master Cho
This old DSL works: class stage_shields_up { package_management::add_package_repository { "reponame": } } This Ruby DSL gives the error " Could not retrieve catalog from remote server: Error 400 on SERVER: Cannot find definition Package_management::Add_package_repository on node puppetclient":

[Puppet Users] Re: Invoking qualified definition in Ruby DSL

2011-04-05 Thread Master Cho
This is on Puppet 2.6.7 and Ruby 1.8.7-p334 -- 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.

Re: [Puppet Users] Catalog changes not picked up immediately

2011-04-05 Thread Adam Winberg
> On 04/05/2011 04:10 PM, hai wu wrote: > > We have same problem, using modules for all and using passenger. Have > > to run puppet agent -tv at least 2 times if need to test a change > > right away .. > > I can confirm this behavior with puppet 2.6.2, using modules and running > on passenger on RH

[Puppet Users] Node classifier not loading any defined classes

2011-04-05 Thread Chad
All, I am sure this is just something I am doing wrong, but I am trying to implement a node classifier (shell script) to have my nodes inherit the proper classes. However, when I run it I am not getting any classes except those that are defined in default. Rather than going into detail showing a

[Puppet Users] Re: Puppet on Redhat 6

2011-04-05 Thread jcbollinger
On Apr 4, 9:05 am, JohnW wrote: > OK, the problem just got a little stranger. > > my previous puppetruns were done on RHEL6 installed on a kvm, with a > kvm host installed with SLES11sp1 > > I now installed a physical host with RHEL6, using the same resources, > and on that system the same puppe

[Puppet Users] Re: ssh_authorized_key and the .ssh directory

2011-04-05 Thread jcbollinger
On Apr 4, 2:52 pm, Forrie wrote: > I've been working with a file of virtual users that I want to > "realize" on certain hosts.   For one of these, I need an > authorized_keys file.   After experimenting with the resource > ssh_authorized_key, I thought I could create a dependency relationship >

Re: [Puppet Users] Catalog changes not picked up immediately

2011-04-05 Thread Martin Alfke
On 04/05/2011 04:10 PM, hai wu wrote: > We have same problem, using modules for all and using passenger. Have > to run puppet agent -tv at least 2 times if need to test a change > right away .. I can confirm this behavior with puppet 2.6.2, using modules and running on passenger on RHEL5 and on De

Re: [Puppet Users] Catalog changes not picked up immediately

2011-04-05 Thread hai wu
We have same problem, using modules for all and using passenger. Have to run puppet agent -tv at least 2 times if need to test a change right away .. On 4/5/11, Felix Frank wrote: > On 04/05/2011 02:10 AM, Giovanni Bordello wrote: >> Hi there, >> >> when I do changes to my Puppet catalog files it

[Puppet Users] Re: RFC: Splitting up the file{} type functionality.

2011-04-05 Thread jcbollinger
On Apr 4, 4:28 pm, Andreas Rogge wrote: > I was thinking about something like "foreach" in the DSL, so you could > simply write something like the following: Resource declarations already provide iteration comparable to 'foreach' when an array is specified as the resource title. In combination

[Puppet Users] Re: duplicate entries in classes.txt

2011-04-05 Thread jcbollinger
On Apr 4, 6:41 pm, Corey Osman wrote: > I am not sure why I am getting duplicate entries in my classes.txt file under > /var/lib/puppet. >  I am using puppet 2.6.4 version.  I am also using foreman as my external > node classifer.   > > This is on the client: > > bash#more classes.txt > ad2lda

Re: [Puppet Users] package installation

2011-04-05 Thread Felix Frank
On 04/05/2011 01:28 PM, CHEBRIAN wrote: > Dear ALL, > > I tried to install mysql server in client machine from puppet > server . > > I am getting the following error > > There are problems and -y was used without --force-yes . \ > > how to say the puppet master to install forcefully . Hi, us

[Puppet Users] package installation

2011-04-05 Thread CHEBRIAN
Dear ALL, I tried to install mysql server in client machine from puppet server . I am getting the following error There are problems and -y was used without --force-yes . \ how to say the puppet master to install forcefully . FYI , Client O/P is , err: /Stage[main]/Mysql-server/Package[mysq

Re: [Puppet Users] Puppet nagios integration problem

2011-04-05 Thread Jonathan Gazeley
On 04/05/2011 08:15 AM, Felix Frank wrote: On 04/04/2011 01:38 PM, Jonathan Gazeley wrote: On 04/04/2011 12:09 PM, FRLinux wrote: On Mon, Apr 4, 2011 at 11:37 AM, Jonathan Gazeley wrote: Can anyone offer any pointers? Go to the one of the clients, then run: puppetd -vt and take a look at t

Re: [Puppet Users] Re: AboutUs is Hiring a DevOps Engineer

2011-04-05 Thread James Turnbull
linuxbsdfreak wrote: > Hi, > > If i am may ask, which place in Germany is aboutus located. I think he means their existing DevOps guys is moving to Germany. AboutUs are based in Portland, Oregon. Regards James Turnbull -- James Turnbull Puppet Labs 1-503-734-8571 -- You received this messag

[Puppet Users] Re: AboutUs is Hiring a DevOps Engineer

2011-04-05 Thread linuxbsdfreak
Hi, If i am may ask, which place in Germany is aboutus located. Regards, Kevin On Apr 5, 2:04 am, Sam Goldstein wrote: > Our very talented sysadmin is moving to Germany so we're looking for a > new DevOps Engineer to join our team. > > Right now our systems are in great shape.  All our servers

Re: [Puppet Users] Should @user with managehome also track the actual home directory?

2011-04-05 Thread Felix Frank
On 04/04/2011 10:00 PM, Forrie wrote: > On my test system, I noticed that (with virtual users) if you remove / > home/username, puppet doesn't realize there is a problem, as the > resource doesn't track the home directory. > > When you userdel then it notices and creates everything as it should >

Re: [Puppet Users] Puppet nagios integration problem

2011-04-05 Thread Felix Frank
On 04/04/2011 01:38 PM, Jonathan Gazeley wrote: > On 04/04/2011 12:09 PM, FRLinux wrote: >> On Mon, Apr 4, 2011 at 11:37 AM, Jonathan Gazeley >> wrote: >>> Can anyone offer any pointers? >> Go to the one of the clients, then run: puppetd -vt and take a look at >> the output? >> >> Usually a good

Re: [Puppet Users] Catalog changes not picked up immediately

2011-04-05 Thread Felix Frank
On 04/05/2011 02:10 AM, Giovanni Bordello wrote: > Hi there, > > when I do changes to my Puppet catalog files it takes some time between > these changes are picked up by the clients, even in manual mode. That > makes testing with "puppetd --test" quite hard because it can often be > up to a couple

Re: [Puppet Users] Re: Merge folders

2011-04-05 Thread Felix Frank
Hi, On 04/04/2011 06:13 PM, Marcus Downing wrote: > As I said, the "sourceselect => all" parameter is necessary to make > puppet merge the listed sources rather than selecting one of them. ah, thanks for pointing that out again. I completely missed that (nor knew of its existence). > I take your

[Puppet Users] - vcsrepo to access svn source with basic http authentication

2011-04-05 Thread mark ardiente
hi, how do you add basic authentication username and password to your source ? -- 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] Migrating away from puppet to cdist

2011-04-05 Thread Nico -telmich- Schottelius
Good morning puppet users, we, some sysadmins [0] at the computer science departement [1] at ETH Zurich [2], developed a new configuration management system called cdist [3], to which we migrate from our puppet configuration. I'm writing to this list for two reasons: 1) Say thanks and goodbye to

[Puppet Users] AboutUs is Hiring a DevOps Engineer

2011-04-05 Thread Sam Goldstein
Our very talented sysadmin is moving to Germany so we're looking for a new DevOps Engineer to join our team. Right now our systems are in great shape. All our servers are built using repeatable configuration. We monitor all critical services. We're looking for someone to help us make sure things