summaryrefslogtreecommitdiff
path: root/files/cron.d/puppetd
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2011-03-28 18:16:13 -0400
committerMicah Anderson <micah@riseup.net>2011-03-28 18:16:13 -0400
commit299c7e4fa7c5d2b41826d87c478c4ba4c5329c48 (patch)
tree01ce5b492abf6574f86d0d0522d5004b7c1cab15 /files/cron.d/puppetd
parent5d21f8f46c5b089160b1f377c140d3c4de46ed54 (diff)
add missing redirection to /dev/null for the first puppet restart: #2690
Diffstat (limited to 'files/cron.d/puppetd')
-rw-r--r--files/cron.d/puppetd2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/cron.d/puppetd b/files/cron.d/puppetd
index 0a68f4d..4db734a 100644
--- a/files/cron.d/puppetd
+++ b/files/cron.d/puppetd
@@ -1,5 +1,5 @@
# check if puppet is running
-0 * * * * root /bin/ps ax | /bin/grep -v grep | /bin/grep -q puppetd || (sleep $(( $(</dev/urandom od -N2 -t u2 -A n) >> 6 )) && /etc/init.d/puppet restart)
+0 * * * * root /bin/ps ax | /bin/grep -v grep | /bin/grep -q puppetd || (sleep $(( $(</dev/urandom od -N2 -t u2 -A n) >> 6 )) && /etc/init.d/puppet restart > /dev/null)
# restart puppet once in a while and randomly delay the restart between 0 and 32 minutes -> splay puppetmaster hammering
0 22 * * */2 root sleep $(( $( </dev/urandom od -N2 -t u2 -A none ) >> 5 )) && /etc/init.d/puppet restart > /dev/null