freebsd-dev/etc/periodic/security/Makefile
Doug Barton f09b508c66 Hook the 220.backup-pkgdb script I added to the build unconditionally
Hook up 610.ipf6denied based on MK_IPFILTER as 510.ipfdenied is now

Poked by:	Andrzej Tobola <ato@iem.pw.edu.pl>
2011-03-27 03:06:58 +00:00

37 lines
536 B
Makefile

# $FreeBSD$
.include <bsd.own.mk>
FILES= 100.chksetuid \
110.neggrpperm \
200.chkmounts \
300.chkuid0 \
400.passwdless \
410.logincheck \
700.kernelmsg \
800.loginfail \
900.tcpwrap \
security.functions
# NB: keep these sorted by MK_* knobs
.if ${MK_IPFILTER} != "no"
FILES+= 510.ipfdenied
FILES+= 610.ipf6denied
.endif
.if ${MK_IPFW} != "no"
FILES+= 500.ipfwdenied \
550.ipfwlimit
.endif
.if ${MK_PF} != "no"
FILES+= 520.pfdenied
.endif
.if ${MK_PKGTOOLS} != "no"
FILES+= 460.chkportsum
.endif
.include <bsd.prog.mk>