[Puppet Users] Re: running and configuring puppetd as a daemon at a set time

2009-05-20 Thread Ohad Levy
you can always use the mini-daemon puppetlisten- http://github.com/ohadlevy/puppet/tree/266e9108c268daf0b2e319bc202d51101b6f594f/ext/puppetlisten Cheers, Ohad On Thu, May 21, 2009 at 10:39 AM, Greg wrote: > > Just thinking about it a bit more... You could control that cron job > from puppet, >

[Puppet Users] Re: running and configuring puppetd as a daemon at a set time

2009-05-20 Thread Greg
Just thinking about it a bit more... You could control that cron job from puppet, that would give you the ability to change it as you require.. Something like: cron { puppetd: command => "/usr/local/bin/puppetd --onetime", user => root, hour => 2, minute => 0 } Obviously this sti

[Puppet Users] Re: running and configuring puppetd as a daemon at a set time

2009-05-20 Thread chakkerz
Yeah ... that's what i thought. Thanks though :) --~--~-~--~~~---~--~~ 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,

[Puppet Users] Re: running and configuring puppetd as a daemon at a set time

2009-05-18 Thread Greg
If you want it to run at a specific time, you could use cron to do a 'puppetd --onetime' if you want to get it to run at a specific time... Though that doesn't let you use puppetrun to push out updates at other times, as the daemon isn't running. On May 18, 10:33 am, chakkerz wrote: > Hello All