Displaying 1 result from an estimated 1 matches for "every3min".
2009 Nov 22
4
Usage of "schedule"
...le".
What I want to do is puppet client( puppetd ) tries to syncronize /etc/
hosts permission as 644, and puppetd tries to check every 3 minutes.
( I know 3 min is so quick, this is just a test of "schedule")
So I wrote manifests/site.pp,
> node default {
> schedule { every3min:
> period => hourly,
> repeat => 20,
> }
>
> file {
> ''/etc/hosts'':
> owner => ''root'',
> group =>''root'',
>...