mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-26 04:54:07 +01:00
d0d6d69788
It relies on output from inetd that is triggered by MK_TCP_WRAPPERS=yes. We need to check for both knobs being set -- otherwise the script doesn't have much value. PR: 217577 Submitted by: Sergey <kpect@protonmail.com> (MK_TCP_WRAPPERS piece) MFC after: 1 week Sponsored by: Dell EMC Isilon
38 lines
574 B
Makefile
38 lines
574 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
FILESGROUPS= FILES DATA
|
|
|
|
FILES= 100.chksetuid \
|
|
110.neggrpperm \
|
|
200.chkmounts \
|
|
300.chkuid0 \
|
|
400.passwdless \
|
|
410.logincheck \
|
|
700.kernelmsg \
|
|
800.loginfail
|
|
DATA= 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_INETD} != "no" && ${MK_TCP_WRAPPERS} != "no"
|
|
FILES+= 900.tcpwrap
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|