1# $FreeBSD: releng/11.0/etc/periodic/security/Makefile 274130 2014-11-05 06:42:07Z bapt $
2
3.include <src.opts.mk>
4
5FILESGROUPS=	FILES DATA
6
7FILES=	100.chksetuid \
8	110.neggrpperm \
9	200.chkmounts \
10	300.chkuid0 \
11	400.passwdless \
12	410.logincheck \
13	700.kernelmsg \
14	800.loginfail \
15	900.tcpwrap
16DATA=	security.functions
17
18# NB: keep these sorted by MK_* knobs
19
20.if ${MK_IPFILTER} != "no"
21FILES+=	510.ipfdenied
22FILES+=	610.ipf6denied
23.endif
24
25.if ${MK_IPFW} != "no"
26FILES+=	500.ipfwdenied \
27	550.ipfwlimit
28.endif
29
30.if ${MK_PF} != "no"
31FILES+=	520.pfdenied
32.endif
33
34.include <bsd.prog.mk>
35