xref: /freebsd/usr.sbin/periodic/etc/security/Makefile (revision 2b05168eb8647262da7ce3506a3599b8be966845)
1.include <src.opts.mk>
2
3PACKAGE=	periodic
4
5CONFGROUPS=	CONFS DATA
6
7CONFS=	100.chksetuid \
8	110.neggrpperm \
9	200.chkmounts \
10	300.chkuid0 \
11	400.passwdless \
12	410.logincheck \
13	700.kernelmsg \
14	800.loginfail
15
16DATA=		security.functions
17DATAMODE=	444
18DATAPACKAGE=	periodic
19
20# NB: keep these sorted by MK_* knobs
21
22.if ${MK_IPFILTER} != "no"
23CONFGROUPS+=		IPFILTER
24IPFILTER+=		510.ipfdenied
25IPFILTER+=		610.ipf6denied
26IPFILTERPACKAGE=	ipf
27.endif
28
29.if ${MK_IPFW} != "no"
30CONFGROUPS+=	IPFW
31IPFW+=		500.ipfwdenied \
32		550.ipfwlimit
33IPFWPACKAGE=	ipfw
34.endif
35
36.if ${MK_PF} != "no"
37CONFGROUPS+=	PF
38PF+=		520.pfdenied
39PFPACKAGE=	pf
40.endif
41
42.if ${MK_INETD} != "no" && ${MK_TCP_WRAPPERS} != "no"
43CONFGROUPS+=	TCPWRAP
44TCPWRAP+=	900.tcpwrap
45TCPWRAPPACKAGE=	tcpd
46.endif
47
48.include <bsd.prog.mk>
49