From owner-svn-ports-head@freebsd.org Sat Sep 24 18:03:45 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 33989BE892B; Sat, 24 Sep 2016 18:03:45 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EA82D173C; Sat, 24 Sep 2016 18:03:44 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8OI3iVN099627; Sat, 24 Sep 2016 18:03:44 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8OI3h9c099624; Sat, 24 Sep 2016 18:03:43 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201609241803.u8OI3h9c099624@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Sat, 24 Sep 2016 18:03:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422736 - in head/sysutils/cbsd: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Sep 2016 18:03:45 -0000 Author: novel Date: Sat Sep 24 18:03:43 2016 New Revision: 422736 URL: https://svnweb.freebsd.org/changeset/ports/422736 Log: sysutils/cbsd: update to 11.0.0 - Tested on FreeBSD 11.0-RELEASE - Improve IPv6 support - Support ZVOL on ZFS-based system for bhyve vms - jexport/jimport scripts has been rewriten to support zvol images - Bhyve UEFI GOP support PR: 212966 Submitted by: maintainer Modified: head/sysutils/cbsd/Makefile head/sysutils/cbsd/distinfo head/sysutils/cbsd/files/cbsdd.in Modified: head/sysutils/cbsd/Makefile ============================================================================== --- head/sysutils/cbsd/Makefile Sat Sep 24 17:47:48 2016 (r422735) +++ head/sysutils/cbsd/Makefile Sat Sep 24 18:03:43 2016 (r422736) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cbsd -PORTVERSION= 10.3.3 +PORTVERSION= 11.0.0 CATEGORIES= sysutils MAINTAINER= olevole@olevole.ru @@ -35,10 +35,6 @@ GROUPS= ${PORTNAME} IGNORE= does not support FreeBSD versions < 10.0 .endif -.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100000 -LIB_DEPENDS+= libxo.so:devel/libxo -.endif - do-install: @${ECHO} "Installing in ${CBSD_HOME}" ${MKDIR} ${STAGEDIR}${CBSD_HOME} Modified: head/sysutils/cbsd/distinfo ============================================================================== --- head/sysutils/cbsd/distinfo Sat Sep 24 17:47:48 2016 (r422735) +++ head/sysutils/cbsd/distinfo Sat Sep 24 18:03:43 2016 (r422736) @@ -1,3 +1,3 @@ -TIMESTAMP = 1470864569 -SHA256 (olevole-cbsd-10.3.3_GH0.tar.gz) = 71574cb7aa234d1a49d4b9ae2182446855a745bddcff877b6bfc56b6bc45aa46 -SIZE (olevole-cbsd-10.3.3_GH0.tar.gz) = 2246656 +TIMESTAMP = 1474732408 +SHA256 (olevole-cbsd-11.0.0_GH0.tar.gz) = 4b0a062e7612116ac5b890cf03298380681aaee540741cddd4ad200096859c0a +SIZE (olevole-cbsd-11.0.0_GH0.tar.gz) = 2344726 Modified: head/sysutils/cbsd/files/cbsdd.in ============================================================================== --- head/sysutils/cbsd/files/cbsdd.in Sat Sep 24 17:47:48 2016 (r422735) +++ head/sysutils/cbsd/files/cbsdd.in Sat Sep 24 18:03:43 2016 (r422736) @@ -57,11 +57,16 @@ command_args="&" cbsdd_prestart() { %%PREFIX%%/bin/cbsd task mode=flushall > /dev/null 2>&1 - %%PREFIX%%/bin/cbsd sysinv mode=update - %%PREFIX%%/bin/cbsd netinv + . ${distdir}/initenv.subr . ${inventory} + %%PREFIX%%/bin/cbsd sysinv mode=update + %%PREFIX%%/bin/cbsd netinv + update_hwinfo + update_netinfo + env sqlcolnames="1" ${miscdir}/sqlcli ${dbdir}/local.sqlite "SELECT * FROM local" > ${inventory} + [ -n "$nat_enable" ] && %%PREFIX%%/bin/cbsd naton /usr/sbin/daemon -f ${rcddir}/jails-astart start } @@ -74,12 +79,12 @@ cbsdd_prestop() cbsdd_stop() { - [ -f "${pidfile}" ] && kill -9 $( cat ${pidfile} ) + [ -f "${pidfile}" ] && kill -9 $( /bin/cat ${pidfile} ) } cbsdd_reload() { - [ -f "${pidfile}" ] && kill -9 $( cat ${pidfile} ) > /dev/null 2>&1 + [ -f "${pidfile}" ] && kill -9 $( /bin/cat ${pidfile} ) > /dev/null 2>&1 run_rc_command "start" exit 0 }