Re: [Puppet Users] Apt Module

2010-04-13 Thread Nicolas Szalay
Le lundi 12 avril 2010 à 11:07 -0700, Paul Lathrop a écrit : > For you debian users out there: > > Digg has allowed me to release our apt module as open-source. It's > simple, but we find it useful. Contributions and criticisms welcome: > > http://github.com/plathrop/libpuppet-apt Thanks for sha

[Puppet Users] Re: Yum repo update now causing failure in client.

2010-04-13 Thread Ken
> Questions : is this the proper way to get a .repo out onto the client > machine? There is a resource type specifically for this. http://docs.puppetlabs.com/references/stable/type.html#yumrepo > And... what's causing this error message? You probably wanted the refreshonly => true attribute on

[Puppet Users] Re: Yum repo update now causing failure in client.

2010-04-13 Thread dbs
On Apr 13, 2:23 am, Patrick wrote: > It looks to me like yum itself is broken.  Try installing something using the > yum command-line client. Oddly, it looked like we had a problem with one of the repos (404 error), which somehow trickled all the way back. I also put in the 'refreshonly=>true'

[Puppet Users] Re: Yum repo update now causing failure in client.

2010-04-13 Thread dbs
Wait, scratch that, ignore this. I still had the module commented out in nodes.pp Sorry for the false alarm! Updates are running correctly! Stand down! (thanks to everyone for their help on the repos - we seem okay now) On Apr 13, 9:24 am, dbs wrote: > On Apr 13, 2:23 am, Patrick wrote: > >

Re: [Puppet Users] is puppet the right tool for me?

2010-04-13 Thread Eric Gerlach
On Thu, Apr 08, 2010 at 09:32:44AM -0700, Patrick wrote: > > You forgot a biggy bonus of puppet, no matter what size you support. I > > have several small ( as in 1-3) groups of very different machines, > > and with puppet I can rebuild them very quickly on when they need to > > be replaced or upg

Re: [Puppet Users] Cron question

2010-04-13 Thread Darvin Denmian
Hello, I tried: cron { "app": command => "nice -n -10 /usr/bin/php/var/www/public_html/rotinas/rotinas.php 2>&1>> /var/log/app.log", environment => "PATH=$PATH", user=> root, } I got the same error: "-":6: bad minute errors in crontab file, can't install. Thanks!

Re: [Puppet Users] Cron question

2010-04-13 Thread Peter Meier
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > cron { "app": > command => "nice -n -10 > /usr/bin/php/var/www/public_html/rotinas/rotinas.php 2>&1>> > /var/log/app.log", > environment => "PATH=$PATH", > user=> root, > } > > I got the same error: looks like a bug,

Re: [Puppet Users] Cron question

2010-04-13 Thread Darvin Denmian
Here is the output: debug: Failed to load library 'selinux' for feature 'selinux' debug: Failed to load library 'shadow' for feature 'libshadow' debug: Puppet::Type::User::ProviderPw: file pw does not exist debug: Failed to load library 'ldap' for feature 'ldap' debug: Puppet::Type::User::Provider

[Puppet Users] mount order

2010-04-13 Thread ed-rfmd
Is there a way to control the order of the mounts? We have a few second level directories in /a that need to mount after / a is mounted but it appears that /a is being mounted after /a/1 and /a/ 2. If I do a manual mount -a everything is accessible. Thanks, Ed -- You received this message becaus

Re: [Puppet Users] Cron question

2010-04-13 Thread Peter Meier
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 04/13/2010 10:50 PM, Darvin Denmian wrote: > Here is the output: and here is the url: http://projects.puppetlabs.com/projects/puppet/issues/new ;) cheers pete -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG wi

[Puppet Users] mount order

2010-04-13 Thread Steven VanDevender
ed-rfmd writes: > Is there a way to control the order of the mounts? > We have a few second level directories in /a that need to mount after / > a is mounted but it appears that /a is being mounted after /a/1 and /a/ > 2. If I do a manual mount -a everything is accessible. Sounds like you need

Re: [Puppet Users] mount order

2010-04-13 Thread Peter Meier
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 04/13/2010 10:08 PM, ed-rfmd wrote: > Is there a way to control the order of the mounts? > We have a few second level directories in /a that need to mount after / > a is mounted but it appears that /a is being mounted after /a/1 and /a/ > 2. If I do

Re: [Puppet Users] Cron question

2010-04-13 Thread Darvin Denmian
Here is the new URL : http://projects.puppetlabs.com/issues/3553 Thanks !!! On Tue, Apr 13, 2010 at 5:57 PM, Peter Meier wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 04/13/2010 10:50 PM, Darvin Denmian wrote: >> Here is the output: > > and here is the url: > http://projects.p

Re: [Puppet Users] Cron question

2010-04-13 Thread Atha Kouroussis
Hi, Quick question: what puppet version are you running? IIRC, one of the early 0.25 versions had an issue with the cron type. Its been resolved in 0.25.4. Cheers, Atha On Apr 13, 2010, at 18:05 , Darvin Denmian wrote: > Here is the new URL : > > http://projects.puppetlabs.com/issues/3553 > >

[Puppet Users] virtual resources

2010-04-13 Thread Roy Nielsen
Hello, I want to vitualize a resources - but want to realize an array of resources... somthing like: @file { $myarray : ensure => directory, ... } Can I realize the resources with: File <| title == $myarray |> ? Thanks, -Roy -- You received this message because you are subscribed t

[Puppet Users] Puppet high-availability

2010-04-13 Thread SyRenity
Hi. I asked this question in past on this list, and now working to set it running. My idea is to have 2 Puppet servers, who are also the DNS servers. Each one would have itself as the puppet hostname. Both of the servers will pull the manifests from external git repo. The idea goes that each Pup

[Puppet Users] DNS recipes

2010-04-13 Thread SyRenity
Hi. Are there any DNS recipes for puppet? Thanks. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-us...@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscr...@googl

Re: [Puppet Users] Puppet high-availability

2010-04-13 Thread Patrick
On Apr 13, 2010, at 3:26 PM, SyRenity wrote: > Hi. > > I asked this question in past on this list, and now working to set it > running. > > My idea is to have 2 Puppet servers, who are also the DNS servers. > Each one would have itself as the puppet hostname. > Both of the servers will pull the

Re: [Puppet Users] DNS recipes

2010-04-13 Thread Patrick
On Apr 13, 2010, at 3:09 PM, SyRenity wrote: > Hi. > > Are there any DNS recipes for puppet? > > Thanks. DNS server or client? If server, what server? -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to pup

Re: [Puppet Users] Puppet high-availability

2010-04-13 Thread Christopher Johnston
How to deal with ssl certs, I have a similar situation where I have two puppetmasters per site and I would like to see them both handle serving puppet data at anytime from a VIP (primary/failover) type of operation. Sent from my iPhone On Apr 13, 2010, at 7:26 PM, Patrick wrote: On Ap

Re: [Puppet Users] Puppet high-availability

2010-04-13 Thread Ohad Levy
Hi, I suggest you search for a post lohit asked a few days ago. Ohad On Wed, Apr 14, 2010 at 7:39 AM, Christopher Johnston wrote: > How to deal with ssl certs, I have a similar situation where I have two > puppetmasters per site and I would like to see them both handle serving > puppet data at

Re: [Puppet Users] Puppet high-availability

2010-04-13 Thread Ohad Levy
On Wed, Apr 14, 2010 at 7:26 AM, Patrick wrote: > > On Apr 13, 2010, at 3:26 PM, SyRenity wrote: > > > Hi. > > > > I asked this question in past on this list, and now working to set it > > running. > > > > My idea is to have 2 Puppet servers, who are also the DNS servers. > > Each one would have

Re: [Puppet Users] Re: Request to make changes to stable Goobuntu Puppet configs

2010-04-13 Thread Russ Allbery
Ohad Levy writes: > While its not for the public, I do have a question in the matter, what > do most people do with id tags? I do have this annoying problem that > the id changes every now and then (e.g. because of the protocol used to > checkout the files) hence changing the file. We used to

Re: [Puppet Users] Puppet high-availability

2010-04-13 Thread Scott Smith
On 4/13/10 3:26 PM, SyRenity wrote: Hi. I asked this question in past on this list, and now working to set it running. My idea is to have 2 Puppet servers, who are also the DNS servers. Each one would have itself as the puppet hostname. Both of the servers will pull the manifests from external

Re: [Puppet Users] Puppet high-availability

2010-04-13 Thread Tony G.
On Tue, Apr 13, 2010 at 7:57 PM, Scott Smith wrote: > On 4/13/10 3:26 PM, SyRenity wrote: > >> Hi. >> >> I asked this question in past on this list, and now working to set it >> running. >> >> My idea is to have 2 Puppet servers, who are also the DNS servers. >> Each one would have itself as the