svn commit: r428618 - in head/net-mgmt/icinga2: . files

Lars Engels lme at FreeBSD.org
Thu Dec 15 14:40:22 UTC 2016


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 at 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


More information about the svn-ports-head mailing list