Re: [Puppet Users] run puppet-agent once per day specific range time.

2018-03-21 Thread Renato
Thank you very much! 2018-03-21 11:28 GMT+01:00 Andreas Zuber : > Hi > > We use something like this to distribute cron jobs over a specified > time interval: > > define cron::interval( > $ensure= present, > $start_hour= undef, > $length= '60', #

Re: [Puppet Users] run puppet-agent once per day specific range time.

2018-03-21 Thread Andreas Zuber
Hi We use something like this to distribute cron jobs over a specified time interval: define cron::interval( $ensure= present, $start_hour= undef, $length= '60', # interval length in minutes $comment = undef, $command = undef, $user = 'root',

Re: [Puppet Users] run puppet-agent once per day specific range time.

2018-03-21 Thread Martin Alfke
Hi > On 20. Mar 2018, at 10:49, Ren wrote: > > Hey everyone, > > > I am looking the best way to implement overall puppet-agent (v4.9.2) to run > only once per day during a specific time. > ie: between 4 hours > 8 hours. > > what do you suggest? should I go

[Puppet Users] run puppet-agent once per day specific range time.

2018-03-20 Thread Ren
Hey everyone, I am looking the best way to implement overall puppet-agent (v4.9.2) to run only once per day during a specific time. ie: between 4 hours > 8 hours. what do you suggest? should I go with to implement a cron type or something using a funciton schedule? Do you have any