svn commit: r277686 - head/etc/rc.d

Garrett Cooper ngie at FreeBSD.org
Sun Jan 25 05:30:04 UTC 2015


Author: ngie
Date: Sun Jan 25 05:30:03 2015
New Revision: 277686
URL: https://svnweb.freebsd.org/changeset/base/277686

Log:
  Install bsnmp rc.d script if MK_BSNMP != no
  
  MFC after: 1 week
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/etc/rc.d/Makefile

Modified: head/etc/rc.d/Makefile
==============================================================================
--- head/etc/rc.d/Makefile	Sun Jan 25 05:23:22 2015	(r277685)
+++ head/etc/rc.d/Makefile	Sun Jan 25 05:30:03 2015	(r277686)
@@ -27,7 +27,6 @@ FILES=	DAEMON \
 	${_bluetooth} \
 	bootparams \
 	bridge \
-	bsnmpd \
 	${_bthidd} \
 	${_casperd} \
 	cleanvar \
@@ -167,6 +166,10 @@ _hcsecd=	hcsecd
 _ubthidhci=	ubthidhci
 .endif
 
+.if ${MK_BSNMP} != "no"
+FILES+=		bsnmpd
+.endif
+
 .if ${MK_CASPER} != "no"
 _casperd=	casperd
 .endif


More information about the svn-src-all mailing list