logcheck.j2 445 B

12345678910111213
  1. {% if ansible_prolog -%}
  2. {% from 'templates/ansible/prolog.j2' import prolog with context %}
  3. {{ prolog() }}
  4. {% endif -%}
  5. # /etc/cron.d/logcheck: crontab entries for the logcheck package
  6. PATH=/bin:/sbin:/usr/bin:/usr/sbin
  7. MAILTO=root
  8. @reboot logcheck if [ -x /usr/sbin/logcheck ]; then nice -n10 /usr/sbin/logcheck -R; fi
  9. 31 6,13,21 * * * logcheck if [ -x /usr/sbin/logcheck ]; then nice -n10 /usr/sbin/logcheck; fi
  10. # EOF