Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 5 Nov 2014 06:42:07 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r274130 - head/etc/periodic/security
Message-ID:  <201411050642.sA56g7mE081395@svn.freebsd.org>

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



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