From owner-svn-ports-head@freebsd.org Tue Dec 5 21:31:39 2017 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 0CAF4E82E7E; Tue, 5 Dec 2017 21:31:39 +0000 (UTC) (envelope-from swills@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 CBCAF71CEA; Tue, 5 Dec 2017 21:31:38 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vB5LVb62022641; Tue, 5 Dec 2017 21:31:37 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vB5LVbfK022638; Tue, 5 Dec 2017 21:31:37 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201712052131.vB5LVbfK022638@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 5 Dec 2017 21:31:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455627 - in head/sysutils/consul: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/sysutils/consul: . files X-SVN-Commit-Revision: 455627 X-SVN-Commit-Repository: ports 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.25 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: Tue, 05 Dec 2017 21:31:39 -0000 Author: swills Date: Tue Dec 5 21:31:37 2017 New Revision: 455627 URL: https://svnweb.freebsd.org/changeset/ports/455627 Log: sysutils/consul: update to 1.0.1 While here, remove config test because it always fails on hosts with more than 1 IP. Modified: head/sysutils/consul/Makefile head/sysutils/consul/distinfo head/sysutils/consul/files/consul.in Modified: head/sysutils/consul/Makefile ============================================================================== --- head/sysutils/consul/Makefile Tue Dec 5 21:15:30 2017 (r455626) +++ head/sysutils/consul/Makefile Tue Dec 5 21:31:37 2017 (r455627) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= consul -PORTVERSION= 0.9.3 -PORTREVISION= 1 +PORTVERSION= 1.0.1 DISTVERSIONPREFIX= v CATEGORIES= sysutils Modified: head/sysutils/consul/distinfo ============================================================================== --- head/sysutils/consul/distinfo Tue Dec 5 21:15:30 2017 (r455626) +++ head/sysutils/consul/distinfo Tue Dec 5 21:31:37 2017 (r455627) @@ -1,3 +1,3 @@ -TIMESTAMP = 1505222411 -SHA256 (hashicorp-consul-v0.9.3_GH0.tar.gz) = 69b76432203e046a8025ce13f7cc041b2308d72f07f240a57f2ba5d580fcff70 -SIZE (hashicorp-consul-v0.9.3_GH0.tar.gz) = 7278357 +TIMESTAMP = 1512496236 +SHA256 (hashicorp-consul-v1.0.1_GH0.tar.gz) = 3b28237dcf055445247a3fe6b9a9a575fd584df721e25477769a5e91b1f2cdce +SIZE (hashicorp-consul-v1.0.1_GH0.tar.gz) = 7972294 Modified: head/sysutils/consul/files/consul.in ============================================================================== --- head/sysutils/consul/files/consul.in Tue Dec 5 21:15:30 2017 (r455626) +++ head/sysutils/consul/files/consul.in Tue Dec 5 21:31:37 2017 (r455627) @@ -37,9 +37,6 @@ command="/usr/sbin/daemon" command_args="-f -p ${pidfile} /usr/bin/env ${consul_env} ${procname} agent -data-dir=${consul_dir} -config-dir=%%PREFIX%%/etc/consul.d ${consul_args}" start_precmd=consul_startprecmd -restart_precmd=consul_checkconfig -reload_precmd=consul_checkconfig -configtest_cmd=consul_checkconfig consul_startprecmd() { @@ -50,12 +47,6 @@ consul_startprecmd() if [ ! -d ${consul_dir} ]; then install -d -o ${consul_user} -g ${consul_group} ${consul_dir} fi - consul_checkconfig -} - -consul_checkconfig() -{ - ${procname} validate /usr/local/etc/consul.d } run_rc_command "$1"