From owner-svn-ports-all@freebsd.org Thu Dec 15 14:40:22 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 06C03C8195F; Thu, 15 Dec 2016 14:40:22 +0000 (UTC) (envelope-from lme@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 C7E1C191A; Thu, 15 Dec 2016 14:40:21 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBFEeKOZ042133; Thu, 15 Dec 2016 14:40:20 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBFEeK4B042131; Thu, 15 Dec 2016 14:40:20 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201612151440.uBFEeK4B042131@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Thu, 15 Dec 2016 14:40:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428618 - in head/net-mgmt/icinga2: . 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: Thu, 15 Dec 2016 14:40:22 -0000 Author: lme Date: Thu Dec 15 14:40:20 2016 New Revision: 428618 URL: https://svnweb.freebsd.org/changeset/ports/428618 Log: net-mgmt/icinga2: - Ignore SIGPIPE in the rc script. This is a workaround for the bug described in https://dev.icinga.com/issues/13567 - Bump PORTREVISION Modified: head/net-mgmt/icinga2/Makefile head/net-mgmt/icinga2/files/icinga2.in Modified: head/net-mgmt/icinga2/Makefile ============================================================================== --- head/net-mgmt/icinga2/Makefile Thu Dec 15 14:18:40 2016 (r428617) +++ head/net-mgmt/icinga2/Makefile Thu Dec 15 14:40:20 2016 (r428618) @@ -3,6 +3,7 @@ PORTNAME= icinga2 DISTVERSIONPREFIX= v DISTVERSION= 2.6.0 +PORTREVISION= 1 CATEGORIES= net-mgmt MAINTAINER= lme@FreeBSD.org Modified: head/net-mgmt/icinga2/files/icinga2.in ============================================================================== --- head/net-mgmt/icinga2/files/icinga2.in Thu Dec 15 14:18:40 2016 (r428617) +++ head/net-mgmt/icinga2/files/icinga2.in Thu Dec 15 14:40:20 2016 (r428618) @@ -19,6 +19,11 @@ . /etc/rc.subr +# XXX temporary workaround for a bug in Icinga 2. See +# https://dev.icinga.org/issues/13567 + +trap "" SIGPIPE + # Add /usr/local/bin to path, so that the notification scripts # can work (#!/usr/bin/env bash) export PATH=$PATH:%%LOCALBASE%%/bin