summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThilo Bangert <bangert@gentoo.org>2009-05-12 20:22:45 +0000
committerThilo Bangert <bangert@gentoo.org>2009-05-12 20:22:45 +0000
commit87a59c9f23bef1aa619dbb11ecf181aa7181d7c6 (patch)
tree96612967de0f35ca913ddaa059290445f23e4666 /sys-process
parentstable x86, bug 266986 (diff)
downloadgentoo-2-87a59c9f23bef1aa619dbb11ecf181aa7181d7c6.tar.gz
gentoo-2-87a59c9f23bef1aa619dbb11ecf181aa7181d7c6.tar.bz2
gentoo-2-87a59c9f23bef1aa619dbb11ecf181aa7181d7c6.zip
disable run-parts by default - warn about double execution - bug #235174
(Portage version: 2.2_rc33/cvs/Linux i686)
Diffstat (limited to 'sys-process')
-rw-r--r--sys-process/anacron/ChangeLog8
-rw-r--r--sys-process/anacron/files/anacrontab10
2 files changed, 13 insertions, 5 deletions
diff --git a/sys-process/anacron/ChangeLog b/sys-process/anacron/ChangeLog
index f5769c68e163..7750256728c7 100644
--- a/sys-process/anacron/ChangeLog
+++ b/sys-process/anacron/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-process/anacron
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/anacron/ChangeLog,v 1.7 2008/10/12 07:30:26 bangert Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-process/anacron/ChangeLog,v 1.8 2009/05/12 20:22:45 bangert Exp $
+
+ 12 May 2009; Thilo Bangert <bangert@gentoo.org> files/anacrontab:
+ disable run-parts by default - warn about double execution
+ bug #235174
12 Oct 2008; Thilo Bangert <bangert@gentoo.org> anacron-2.3-r2.ebuild:
add dep on cronbase (fixing bug #241426) - fix quoting
diff --git a/sys-process/anacron/files/anacrontab b/sys-process/anacron/files/anacrontab
index 9c70b60bdaae..c279929fcb65 100644
--- a/sys-process/anacron/files/anacrontab
+++ b/sys-process/anacron/files/anacrontab
@@ -1,7 +1,11 @@
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
# format: period delay job-identifier command
-1 5 cron.daily run-parts /etc/cron.daily
-7 10 cron.weekly run-parts /etc/cron.weekly
-30 15 cron.monthly run-parts /etc/cron.monthly
+##
+## If you turn any of the following on, make sure that the
+## regular cron daemon does not run them also. This could
+## lead to double execution of the jobs.
+#1 5 cron.daily run-parts /etc/cron.daily
+#7 10 cron.weekly run-parts /etc/cron.weekly
+#30 15 cron.monthly run-parts /etc/cron.monthly