svn commit: r380044 - in head/net-mgmt/xymon-client: . files

Mark Felder feld at FreeBSD.org
Thu Feb 26 18:11:39 UTC 2015


Author: feld
Date: Thu Feb 26 18:11:38 2015
New Revision: 380044
URL: https://svnweb.freebsd.org/changeset/ports/380044
QAT: https://qat.redports.org/buildarchive/r380044/

Log:
  The new stop_postcmd was too broad and could kill xymon-server if it was
  running on the same host as xymon-client

Modified:
  head/net-mgmt/xymon-client/Makefile
  head/net-mgmt/xymon-client/files/xymon-client.in

Modified: head/net-mgmt/xymon-client/Makefile
==============================================================================
--- head/net-mgmt/xymon-client/Makefile	Thu Feb 26 18:07:11 2015	(r380043)
+++ head/net-mgmt/xymon-client/Makefile	Thu Feb 26 18:11:38 2015	(r380044)
@@ -2,7 +2,7 @@
 
 PORTNAME=	xymon
 PORTVERSION=	4.3.18
-PORTREVISION=	5
+PORTREVISION=	6
 CATEGORIES=	net-mgmt www
 MASTER_SITES=	SF/xymon/Xymon/${PORTVERSION}
 PKGNAMESUFFIX=	-client${PKGNAMESUFFIX2}

Modified: head/net-mgmt/xymon-client/files/xymon-client.in
==============================================================================
--- head/net-mgmt/xymon-client/files/xymon-client.in	Thu Feb 26 18:07:11 2015	(r380043)
+++ head/net-mgmt/xymon-client/files/xymon-client.in	Thu Feb 26 18:11:38 2015	(r380044)
@@ -21,7 +21,7 @@ command=%%WWWDIR%%/client/bin/xymonlaunc
 command_args="--config=%%WWWDIR%%/client/etc/clientlaunch.cfg --log=%%WWWDIR%%/client/logs/clientlaunch.log --pidfile=${pidfile}"
 start_precmd=xymon_precmd
 # Clean up leftover children
-stop_postcmd="pkill -U ${xymon_client_user}"
+stop_postcmd="pkill -U ${xymon_client_user} vmstat"
 
 xymon_precmd()
 {


More information about the svn-ports-all mailing list