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