[Midnightbsd-cvs] src [7417] stable/0.7: MidnightBSD 0.7.2-RELEASE.
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Thu Jan 14 08:05:38 EST 2016
Revision: 7417
http://svnweb.midnightbsd.org/src/?rev=7417
Author: laffer1
Date: 2016-01-14 08:04:37 -0500 (Thu, 14 Jan 2016)
Log Message:
-----------
MidnightBSD 0.7.2-RELEASE. Fix a security issue with bsnmpd configuration file installation.
Modified Paths:
--------------
stable/0.7/UPDATING
stable/0.7/etc/Makefile
stable/0.7/sys/conf/newvers.sh
Property Changed:
----------------
stable/0.7/
Index: stable/0.7
===================================================================
--- stable/0.7 2016-01-14 12:52:14 UTC (rev 7416)
+++ stable/0.7 2016-01-14 13:04:37 UTC (rev 7417)
Property changes on: stable/0.7
___________________________________________________________________
Added: svn:mergeinfo
## -0,0 +1 ##
+/trunk:7416
\ No newline at end of property
Modified: stable/0.7/UPDATING
===================================================================
--- stable/0.7/UPDATING 2016-01-14 12:52:14 UTC (rev 7416)
+++ stable/0.7/UPDATING 2016-01-14 13:04:37 UTC (rev 7417)
@@ -1,5 +1,9 @@
Updating Information for MidnightBSD users.
+20160114:
+ 0.7.2 RELEASE
+ Fix a security issue with bsnmpd configuration file installation.
+
20151002:
Revised rpcbind(8) patch to fix issues with NIS
Modified: stable/0.7/etc/Makefile
===================================================================
--- stable/0.7/etc/Makefile 2016-01-14 12:52:14 UTC (rev 7416)
+++ stable/0.7/etc/Makefile 2016-01-14 13:04:37 UTC (rev 7417)
@@ -1,5 +1,5 @@
# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
-# $MidnightBSD: src/etc/Makefile,v 1.26 2013/01/09 04:14:06 laffer1 Exp $
+# $MidnightBSD$
.include <bsd.own.mk>
@@ -80,10 +80,6 @@
BIN1+= apmd.conf
.endif
-.if ${MK_BSNMP} != "no"
-BIN1+= snmpd.config
-.endif
-
.if ${MK_LOCATE} != "no"
BIN1+= ${.CURDIR}/../usr.bin/locate/locate/locate.rc
.endif
@@ -188,6 +184,11 @@
${BIN2} ${DESTDIR}/etc; \
${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \
master.passwd nsmb.conf opieaccess ${DESTDIR}/etc;
+.if ${MK_BSNMP} != "no"
+ cd ${.CURDIR}; \
+ ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 600 \
+ snmpd.config ${DESTDIR}/etc;
+.endif
.if ${MK_AT} == "no"
sed -i "" -e 's;.*/usr/libexec/atrun;#&;' ${DESTDIR}/etc/crontab
.endif
Modified: stable/0.7/sys/conf/newvers.sh
===================================================================
--- stable/0.7/sys/conf/newvers.sh 2016-01-14 12:52:14 UTC (rev 7416)
+++ stable/0.7/sys/conf/newvers.sh 2016-01-14 13:04:37 UTC (rev 7417)
@@ -32,7 +32,7 @@
# $MidnightBSD$
TYPE="MidnightBSD"
-REVISION="0.7.1"
+REVISION="0.7.2"
RELEASE="${REVISION}"
VERSION="${TYPE} ${RELEASE}"
SYSDIR=$(dirname $0)/..
More information about the Midnightbsd-cvs
mailing list