From owner-svn-ports-all@freebsd.org Fri Dec 30 13:36:10 2016 Return-Path: Delivered-To: svn-ports-all@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 5643FC979D9; Fri, 30 Dec 2016 13:36:10 +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 25B3711B8; Fri, 30 Dec 2016 13:36:10 +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 uBUDa93V006081; Fri, 30 Dec 2016 13:36:09 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBUDa933006079; Fri, 30 Dec 2016 13:36:09 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201612301336.uBUDa933006079@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 30 Dec 2016 13:36:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429983 - in head/security/vault: . 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-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2016 13:36:10 -0000 Author: swills Date: Fri Dec 30 13:36:09 2016 New Revision: 429983 URL: https://svnweb.freebsd.org/changeset/ports/429983 Log: security/vault: fix syslog socket path PR: 215664 Submitted by: Pavel Timofeev Added: head/security/vault/files/patch-vendor_github.com_hashicorp_go-syslog_builtin.go (contents, props changed) Modified: head/security/vault/Makefile Modified: head/security/vault/Makefile ============================================================================== --- head/security/vault/Makefile Fri Dec 30 13:31:03 2016 (r429982) +++ head/security/vault/Makefile Fri Dec 30 13:36:09 2016 (r429983) @@ -3,6 +3,7 @@ PORTNAME= vault PORTVERSION= 0.6.4 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= security MAINTAINER= swills@FreeBSD.org Added: head/security/vault/files/patch-vendor_github.com_hashicorp_go-syslog_builtin.go ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/vault/files/patch-vendor_github.com_hashicorp_go-syslog_builtin.go Fri Dec 30 13:36:09 2016 (r429983) @@ -0,0 +1,11 @@ +--- vendor/github.com/hashicorp/go-syslog/builtin.go.orig 2016-12-30 09:29:42 UTC ++++ vendor/github.com/hashicorp/go-syslog/builtin.go +@@ -199,7 +199,7 @@ func (n *netConn) close() error { + // local machine using a Unix domain socket. + func unixSyslog() (conn serverConn, err error) { + logTypes := []string{"unixgram", "unix"} +- logPaths := []string{"/dev/log", "/var/run/syslog"} ++ logPaths := []string{"/dev/log", "/var/run/syslog", "/var/run/log"} + for _, network := range logTypes { + for _, path := range logPaths { + conn, err := net.DialTimeout(network, path, localDeadline)