File: debathena-cron-example.cron.d

package info (click to toggle)
config-package-dev 5.5.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 632 kB
  • sloc: perl: 247; makefile: 66; sh: 49
file content (9 lines) | stat: -rw-r--r-- 347 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
# /etc/cron.d/logcheck: crontab entries for the logcheck package

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root

@reboot         logcheck    if [ -x /usr/sbin/logcheck ]; then nice -n10 /usr/sbin/logcheck -R; fi
* * * * *       logcheck    if [ -x /usr/sbin/logcheck ]; then nice -n10 /usr/sbin/logcheck; fi

# EOF