diff options
author | 2009-12-19 14:47:30 +0000 | |
---|---|---|
committer | 2009-12-19 14:47:30 +0000 | |
commit | 6db988fe20da2873f77e5f3619bec33595aa9b06 (patch) | |
tree | b2b451c61b6257c20274241194f4b15fc9de6f83 /sys-process/dcron/files | |
parent | old (diff) | |
download | historical-6db988fe20da2873f77e5f3619bec33595aa9b06.tar.gz historical-6db988fe20da2873f77e5f3619bec33595aa9b06.tar.bz2 historical-6db988fe20da2873f77e5f3619bec33595aa9b06.zip |
Fix default crontab file and push it out #98189.
Package-Manager: portage-2.2_rc60/cvs/Linux x86_64
RepoMan-Options: --force
Diffstat (limited to 'sys-process/dcron/files')
-rw-r--r-- | sys-process/dcron/files/crontab | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/sys-process/dcron/files/crontab b/sys-process/dcron/files/crontab index 29a7ead6766a..afee25203a6a 100644 --- a/sys-process/dcron/files/crontab +++ b/sys-process/dcron/files/crontab @@ -1,5 +1,5 @@ # for dcron -# $Header: /var/cvsroot/gentoo-x86/sys-process/dcron/files/crontab,v 1.2 2009/05/12 09:18:29 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/dcron/files/crontab,v 1.3 2009/12/19 14:47:30 vapier Exp $ # dcron: # This is NOT the system crontab! dcron does not support a system crontab. @@ -8,15 +8,9 @@ # as root. # NOTE: This will REPLACE root's current crontab!! -# Global variables -SHELL=/bin/bash -PATH=/sbin:/bin:/usr/sbin:/usr/bin -MAILTO=root -HOME=/ - # check scripts in cron.hourly, cron.daily, cron.weekly and cron.monthly -59 * * * * root rm -f /var/spool/cron/lastrun/cron.hourly -9 3 * * * root rm -f /var/spool/cron/lastrun/cron.daily -19 4 * * 6 root rm -f /var/spool/cron/lastrun/cron.weekly -29 5 1 * * root rm -f /var/spool/cron/lastrun/cron.monthly -*/10 * * * * root test -x /usr/sbin/run-crons && /usr/sbin/run-crons +59 * * * * rm -f /var/spool/cron/lastrun/cron.hourly +9 3 * * * rm -f /var/spool/cron/lastrun/cron.daily +19 4 * * 6 rm -f /var/spool/cron/lastrun/cron.weekly +29 5 1 * * rm -f /var/spool/cron/lastrun/cron.monthly +*/10 * * * * test -x /usr/sbin/run-crons && /usr/sbin/run-crons |