svn commit: r315346 - stable/10/etc/periodic/security

Ngie Cooper ngie at FreeBSD.org
Thu Mar 16 01:47:27 UTC 2017


Author: ngie
Date: Thu Mar 16 01:47:26 2017
New Revision: 315346
URL: https://svnweb.freebsd.org/changeset/base/315346

Log:
  MFC r274130:
  r274130 (by bapt):
  
  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

Modified:
  stable/10/etc/periodic/security/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/etc/periodic/security/Makefile
==============================================================================
--- stable/10/etc/periodic/security/Makefile	Thu Mar 16 01:41:36 2017	(r315345)
+++ stable/10/etc/periodic/security/Makefile	Thu Mar 16 01:47:26 2017	(r315346)
@@ -2,6 +2,8 @@
 
 .include <bsd.own.mk>
 
+FILESGROUPS=	FILES DATA
+
 FILES=	100.chksetuid \
 	110.neggrpperm \
 	200.chkmounts \
@@ -10,8 +12,8 @@ FILES=	100.chksetuid \
 	410.logincheck \
 	700.kernelmsg \
 	800.loginfail \
-	900.tcpwrap \
-	security.functions
+	900.tcpwrap
+DATA=	security.functions
 
 # NB: keep these sorted by MK_* knobs
 


More information about the svn-src-all mailing list