- Only disable automatic cron job installation when installing from the

port, not the package.
This commit is contained in:
Greg Larkin
2013-07-18 21:52:19 +00:00
parent cd05cb5126
commit d0942740f0
2 changed files with 6 additions and 6 deletions

View File

@@ -13,10 +13,10 @@ you update your ports collection, before attempting any port upgrades.
installation of the crontab file. When installing the port interactively,
the port option is enabled by default to mimic previous behavior.
When the port is installed non-interactively (BATCH=yes or
PACKAGE_BUILDING=yes), the crontab file *will not* be installed
automatically. If the EXAMPLES port option is enabled, the crontab file
can be installed manually at a later time from EXAMPLESDIR/crontab.in.
When the port is installed non-interactively (BATCH=yes) the crontab
file *will not* be installed automatically. If the EXAMPLES port option
is enabled, the crontab file can be installed manually at a later time
from EXAMPLESDIR/crontab.in.
20130718:
AFFECTS: users of www/zend-framework

View File

@@ -3,7 +3,7 @@
PORTNAME= logcheck
PORTVERSION= 1.3.15
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_DEBIAN_POOL}
DISTNAME= ${PORTNAME}_${PORTVERSION}
@@ -28,7 +28,7 @@ RUNDIR= ${BASEDIR}/var/run/${PORTNAME}
OPTIONS_DEFINE= CRON
CRON_DESC= Install cron script automatically
.if !defined(BATCH) && !defined(PACKAGE_BUILDING)
.if !defined(BATCH)
OPTIONS_DEFAULT=CRON
.endif