Date: Wed, 8 Mar 2017 06:12:16 +0000 (UTC) From: Ngie Cooper <ngie@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r314895 - head/etc/periodic/security Message-ID: <201703080612.v286CGje080275@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ngie Date: Wed Mar 8 06:12:16 2017 New Revision: 314895 URL: https://svnweb.freebsd.org/changeset/base/314895 Log: Only install 900.tcpwrap if MK_INETD != "no" and MK_TCP_WRAPPERS != "no" 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 Modified: head/etc/periodic/security/Makefile Modified: head/etc/periodic/security/Makefile ============================================================================== --- head/etc/periodic/security/Makefile Wed Mar 8 05:49:58 2017 (r314894) +++ head/etc/periodic/security/Makefile Wed Mar 8 06:12:16 2017 (r314895) @@ -11,8 +11,7 @@ FILES= 100.chksetuid \ 400.passwdless \ 410.logincheck \ 700.kernelmsg \ - 800.loginfail \ - 900.tcpwrap + 800.loginfail DATA= security.functions # NB: keep these sorted by MK_* knobs @@ -31,4 +30,8 @@ FILES+= 500.ipfwdenied \ FILES+= 520.pfdenied .endif +.if ${MK_INETD} != "no" && ${MK_TCP_WRAPPERS} != "no" +FILES+= 900.tcpwrap +.endif + .include <bsd.prog.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703080612.v286CGje080275>