diff options
author | bapt <bapt@FreeBSD.org> | 2014-11-05 06:42:07 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-11-05 06:42:07 +0000 |
commit | bfc0f852ba36942c2903b68b79ccc504e7d2c1f7 (patch) | |
tree | f24874a91b6cb624685a7dbd29eb4b72f92bb39d /etc | |
parent | c55c1b4d7bce32bc48c8e9d0a690c687e0130e43 (diff) | |
download | FreeBSD-src-bfc0f852ba36942c2903b68b79ccc504e7d2c1f7.zip FreeBSD-src-bfc0f852ba36942c2903b68b79ccc504e7d2c1f7.tar.gz |
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
Diffstat (limited to 'etc')
-rw-r--r-- | etc/periodic/security/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/etc/periodic/security/Makefile b/etc/periodic/security/Makefile index 026948b..8174133 100644 --- a/etc/periodic/security/Makefile +++ b/etc/periodic/security/Makefile @@ -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 |