svn commit: r274130 - head/etc/periodic/security

Baptiste Daroussin bapt at FreeBSD.org
Wed Nov 5 06:42:08 UTC 2014


Author: bapt
Date: Wed Nov  5 06:42:07 2014
New Revision: 274130
URL: https://svnweb.freebsd.org/changeset/base/274130

Log:
  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

Modified:
  head/etc/periodic/security/Makefile

Modified: head/etc/periodic/security/Makefile
==============================================================================
--- head/etc/periodic/security/Makefile	Wed Nov  5 06:22:37 2014	(r274129)
+++ head/etc/periodic/security/Makefile	Wed Nov  5 06:42:07 2014	(r274130)
@@ -2,6 +2,8 @@
 
 .include <src.opts.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-head mailing list