67a866343f
- Introduce security_status_baseaudit_period variable to files/405.pkg-base-audit.in in order to make it possible to specify when this script is executed (i.e. daily, weekly or monthly). PR: 224239 Submitted by: Yasuhiro KIMURA <yasu@utahime.org>, Miroslav Lachman <000.fbsd@quip.cz> (maintainer)
32 lines
646 B
Makefile
32 lines
646 B
Makefile
# Created by: Miroslav Lachman
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= base-audit
|
|
PORTVERSION= 0.2
|
|
CATEGORIES= security
|
|
MASTER_SITES= # none
|
|
DISTFILES= # none
|
|
|
|
MAINTAINER= 000.fbsd@quip.cz
|
|
COMMENT= Daily periodic check of vulnerabilities in base system
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
RUN_DEPENDS= pkg:ports-mgmt/pkg
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
NO_INSTALL= yes
|
|
|
|
SUB_FILES= 405.pkg-base-audit
|
|
|
|
PERIODIC_SECURITY= etc/periodic/security
|
|
|
|
PLIST_FILES= ${PERIODIC_SECURITY}/405.pkg-base-audit
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/${PERIODIC_SECURITY}
|
|
${INSTALL_SCRIPT} ${WRKDIR}/405.pkg-base-audit \
|
|
${STAGEDIR}${PREFIX}/${PERIODIC_SECURITY}
|
|
|
|
.include <bsd.port.mk>
|