[Puppet Users] Re: Puppet 0.25 migration

2009-09-09 Thread jrojas
I am seeing this problem as well. Reverting from 2.2.5 to 2.2.2 did not help. On Sep 9, 9:12 am, Matt wrote: > Reverting back to the passenger 2.2.2 gem worked for me. > > 2009/9/8 Larry Ludwig : > > > > > hmm passenger 2.2.5 is released?  hmm I'll have to test it out. > > > -L > > > -- > > Lar

[Puppet Users] Re: Yum update

2008-11-25 Thread jrojas
I have always been on the fence with this issue. There are certain things you are able to mange with puppet with the use of "ensure => latest" (at least it has always worked for me) Some people say, puppet is meant to maintain a stable build of your system not update it. And some people say, puppe

[Puppet Users] Re: puppetrun

2008-11-25 Thread jrojas
You need to configure your "puppetd" to listen. If it is not listening then it wont let puppetrun happen. Look at this page: http://reductivelabs.com/trac/puppet/wiki/NameSpaceAuth puppetd must be started with --listen, and namespaceauth.conf needs to know who the puppetmaster is. -Jason --~

[Puppet Users] Re: notify and reload

2008-11-25 Thread jrojas
in your case you may want to define the service like so: service { "your_service": ensure => running, enable => true, restart => "your restart command here, subscribe => File["config file"]; } --~--~-~--~~~---~--~~ You received

[Puppet Users] Re: cron type with UID conflicts

2008-11-25 Thread jrojas
That is a tough one, try creating your own custom type as a monkey patch. What happens if you add a user => "root" to your manifest for the cron entry? -Jason --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Puppet

[Puppet Users] Re: Two files with no change trying to be modified

2008-11-25 Thread jrojas
The first part I am not sure on, the second part is interesting. Net-SNMP always does weird things. Can you get a diff of the two files? notice: checksum changed '{md5}2bae7729229cff023cb03b0377cd7088' to '{md5}0e86c2e3ca02312e61f477528bcfaf64' --~--~-~--~~~---~--~---

[Puppet Users] Re: conditional if/else string matching

2008-12-02 Thread jrojas
is class ntp { missing the } at the EOF? --~--~-~--~~~---~--~~ 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 e

[Puppet Users] Re: How best to distribute version-controlled information to clients?

2008-12-02 Thread jrojas
I currently have this loaded in my puppet config, from what svn tells me, it is something a co-worker wrote... define svn_get_single_file($repo, $destination, $ensure = 'present') { $path = "${name}" case $ensure { default: { err ( "you must specify present or absent for ensure!" ) } present:

[Puppet Users] Re: puppetshow with puppetmaster 0.24.6

2009-01-14 Thread jrojas
Sorry if I am re-hashing this but this error is bugging the piss out of me, first of the details: My gems: actionmailer (2.0.2) actionpack (2.0.2) activerecord (2.0.2) activeresource (2.0.2) activesupport (2.0.2) daemons (1.0.10) fastthread (1.0.1) gem_plugin (0.2.3) hobofields (0.7.5) hobosuppor

[Puppet Users] Re: Certificates were not trusted: certificate verify failed

2009-01-16 Thread jrojas
I ran into a similar issue today and I thought I would share. My co-woker kickstarted a server, puppet gets installed in the kickstart with the appropriate configs. Puppet is responsible for installing and configuring numerous packages and services. It would try to get the cert, and puppetmaster

[Puppet Users] Re: custom fact in kickstart postisntall

2009-01-16 Thread jrojas
Try adding --factsync to the puppetd line. Does your puppet.conf include factsync = true? that would explain it working a second time and not a first (sort of) -Jason On Jan 12, 9:03 am, Arnau Bria wrote: > Hi all, > > I have a custom fact which determines what interface is primary in > future

[Puppet Users] Re: puppetshow with puppetmaster 0.24.6

2009-01-16 Thread jrojas
at all and probably works > on much older versions of puppet. > > Scott > > On Jan 15, 2:49 am, jrojas wrote: > > > Sorry if I am re-hashing this but this error is bugging the piss out > > of me, first of the details: > > > My gems: > > actionmaile

[Puppet Users] Re: multiple file sources for a file

2009-01-20 Thread jrojas
file { apache-config: source => "puppet://$puppetserver/files/etc/apache2/sites- available/${name}", recurse => true; } http://reductivelabs.com/trac/puppet/wiki/TypeReference#id348 recurse Whether and how deeply to do recursive management. Valid values are true, false, inf.

[Puppet Users] Re: exec issue

2009-03-19 Thread jrojas
You have to escape the dollar signs or quote the text specifically. Otherwise puppet will assume that: "$1$HvjTWzzz$jF.G/mEbh7IOtpCdUPUTO1 pt_" will break up into the following variables: $1 $HvjTWzzz $jF Which is why you get the weird line. --~--~-~--~~~---~--~~ Y

[Puppet Users] camptocamp puppet-iptables constantly applying changes?

2009-05-01 Thread jrojas
In the pastie here: http://pastie.org/465261 The same set of rules are applied on each run. I used numbers as the names to sort the rules accordingly since iptables rules' order does matter. Has anyone been using this module/plugin? I havent tried using a-z for the names of the rules, and there

[Puppet Users] Re: Puppetshow defunct?

2009-05-29 Thread jrojas
I have a version of puppetshow that I threw together based off of the original (minus the hobo and other crazy gems) I will sanitize it tonight and try to get it on github. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Grou