mirror of
https://github.com/opnsense/src.git
synced 2026-04-03 16:35:27 -04:00
This makes pkgbase easier by tagging these as CONFS so they are properly tagged as config files. Approved by: will (mentor) Sponsored by: Essen Hackathon Differential Revision: https://reviews.freebsd.org/D16553
38 lines
587 B
Makefile
38 lines
587 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
CONFGROUPS= CONFS DATA
|
|
|
|
CONFS= 100.chksetuid \
|
|
110.neggrpperm \
|
|
200.chkmounts \
|
|
300.chkuid0 \
|
|
400.passwdless \
|
|
410.logincheck \
|
|
700.kernelmsg \
|
|
800.loginfail
|
|
DATA= security.functions
|
|
DATAMODE= 444
|
|
|
|
# NB: keep these sorted by MK_* knobs
|
|
|
|
.if ${MK_IPFILTER} != "no"
|
|
CONFS+= 510.ipfdenied
|
|
CONFS+= 610.ipf6denied
|
|
.endif
|
|
|
|
.if ${MK_IPFW} != "no"
|
|
CONFS+= 500.ipfwdenied \
|
|
550.ipfwlimit
|
|
.endif
|
|
|
|
.if ${MK_PF} != "no"
|
|
CONFS+= 520.pfdenied
|
|
.endif
|
|
|
|
.if ${MK_INETD} != "no" && ${MK_TCP_WRAPPERS} != "no"
|
|
CONFS+= 900.tcpwrap
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|