Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 Mar 2017 01:47:26 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r315346 - stable/10/etc/periodic/security
Message-ID:  <201703160147.v2G1lQWr062688@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703160147.v2G1lQWr062688>