logcheck.j2 435 B

1234567891011121314
  1. {% if ansible_controlled is defined and ansible_controlled != "" %}
  2. #
  3. # {{ ansible_controlled }}
  4. #
  5. {% endif %}
  6. # /etc/cron.d/logcheck: crontab entries for the logcheck package
  7. PATH=/bin:/sbin:/usr/bin:/usr/sbin
  8. MAILTO=root
  9. @reboot logcheck if [ -x /usr/sbin/logcheck ]; then nice -n10 /usr/sbin/logcheck -R; fi
  10. 31 6,13,21 * * * logcheck if [ -x /usr/sbin/logcheck ]; then nice -n10 /usr/sbin/logcheck; fi
  11. # EOF