diff options
author | 2007-10-27 21:21:11 +0000 | |
---|---|---|
committer | 2007-10-27 21:21:11 +0000 | |
commit | 5831daac2ee05535b3f4837bc6ff606782d43b70 (patch) | |
tree | 0ceb1c7cb5f4f172566d375b51e1da2271f049e9 /eclass | |
parent | remove old versions (diff) | |
download | historical-5831daac2ee05535b3f4837bc6ff606782d43b70.tar.gz historical-5831daac2ee05535b3f4837bc6ff606782d43b70.tar.bz2 historical-5831daac2ee05535b3f4837bc6ff606782d43b70.zip |
more crons than vixie support the system crontab - bug #89213
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/cron.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/cron.eclass b/eclass/cron.eclass index 8c09be4eced0..dae30d612381 100644 --- a/eclass/cron.eclass +++ b/eclass/cron.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/cron.eclass,v 1.10 2006/10/31 17:20:38 wschlich Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/cron.eclass,v 1.11 2007/10/27 21:21:11 bangert Exp $ # Original Author: Aaron Walker <ka0ttic@gentoo.org> # @@ -134,8 +134,8 @@ docrontab() { cron_pkg_postinst() { echo - # vixie is the only daemon that has a true system crontab - if [[ "${PN}" != "vixie-cron" ]] ; then + # daemons that have a true system crontab set CRON_SYSTEM_CRONTAB="yes" + if [ "${CRON_SYSTEM_CRONTAB:-no}" != "yes" ] ; then einfo "To activate /etc/cron.{hourly|daily|weekly|monthly} please run:" einfo " crontab /etc/crontab" einfo |