freebsd-dev/etc/periodic/security/Makefile
Baptiste Daroussin 81e6fb172f Avoid installing security.functions with executable bits, periodic(8) will
try to execute all files with an executable bit in /etc/periodic/*/ while
this file is supposed only to be sourced by others

MFC after:	1 week
2014-11-05 06:42:07 +00:00

35 lines
507 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 \
900.tcpwrap
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
.include <bsd.prog.mk>