summaryrefslogtreecommitdiff
path: root/manifests/openbsd.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/openbsd.pp')
-rw-r--r--manifests/openbsd.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/openbsd.pp b/manifests/openbsd.pp
index 2e3c493..1df5a9e 100644
--- a/manifests/openbsd.pp
+++ b/manifests/openbsd.pp
@@ -19,12 +19,12 @@ class puppet::openbsd inherits puppet::base {
cron {
'puppetd_check':
- command => '/bin/ps ax | /usr/bin/grep -v grep | /usr/bin/grep -q "puppet agent" || (sleep $(($RANDOM/2000*60)) && /usr/local/bin/puppet agent)',
+ command => '/bin/ps ax | /usr/bin/grep -v grep | /usr/bin/grep -q "puppet agent" || (sleep $(( $(</dev/urandom od -N2 -t u2 -A n) >> 6 )) && /usr/local/bin/puppet agent)',
user => root,
minute => 0;
'puppetd_restart':
- command => 'sleep $((echo $RANDOM/2000*60)) && /bin/kill `/bin/cat /var/run/puppet/agent.pid`; /usr/local/bin/puppet agent',
+ command => 'sleep $(( $(</dev/urandom od -N2 -t u2 -A n) >> 6 )) && /bin/kill `/bin/cat /var/run/puppet/agent.pid`; /usr/local/bin/puppet agent',
minute => 0,
hour => 22,
monthday => '*/2',