View | Details | Raw Unified | Return to bug 203960
Collapse All | Expand All

(-)monit-new/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD: head/sysutils/monit/Makefile 389932 2015-06-17 13:49:02Z jhale $
2
# $FreeBSD: head/sysutils/monit/Makefile 389932 2015-06-17 13:49:02Z jhale $
3
3
4
PORTNAME=	monit
4
PORTNAME=	monit
5
PORTVERSION=	5.14
5
PORTVERSION=	5.15
6
CATEGORIES=	sysutils
6
CATEGORIES=	sysutils
7
MASTER_SITES=	http://www.mmonit.com/monit/dist/
7
MASTER_SITES=	http://www.mmonit.com/monit/dist/
8
8
(-)monit-new/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (monit-5.14.tar.gz) = d0424c3ee8ed43d670ba039184a972ac9f3ad6f45b0806ec17c23820996256c6
1
SHA256 (monit-5.15.tar.gz) = deada8153dc7e8755f572bc4d790143a92c7a8668dccb563ae4dbd73af56697c
2
SIZE (monit-5.14.tar.gz) = 1200131
2
SIZE (monit-5.15.tar.gz) = 1218043
(-)monit-new/files/patch-src_http.c (-11 lines)
Lines 1-11 Link Here
1
--- src/http.c.orig	2015-06-02 10:09:34 UTC
2
+++ src/http.c
3
@@ -137,6 +137,8 @@ void monit_http(Httpd_Action action) {
4
 
5
 
6
 static void *thread_wrapper(void *arg) {
7
+        sigset_t ns;
8
+        set_signal_block(&ns, NULL);
9
         Engine_start();
10
 #ifdef HAVE_OPENSSL
11
         Ssl_threadCleanup();
(-)monit-new/files/patch-src_monit.c (-11 lines)
Lines 1-11 Link Here
1
--- src/monit.c.orig	2015-06-08 12:24:39 UTC
2
+++ src/monit.c
3
@@ -819,6 +819,8 @@ static void version() {
4
  * M/Monit heartbeat thread
5
  */
6
 static void *heartbeat(void *args) {
7
+        sigset_t ns;
8
+        set_signal_block(&ns, NULL);
9
         LogInfo("M/Monit heartbeat started\n");
10
         LOCK(heartbeatMutex)
11
         {

Return to bug 203960