From 8e1e4d7d2d2bfe88c1b14a8e844222278e12fccc Mon Sep 17 00:00:00 2001 From: AaronA Date: Wed, 1 Nov 2017 13:57:43 -0600 Subject: [PATCH] Force a kill of the existing Processes to make sure they are left and the processes begin to stack up. --- utils/watchcat/files/initd_watchcat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/watchcat/files/initd_watchcat b/utils/watchcat/files/initd_watchcat index d6f954e9e5..2131860634 100644 --- a/utils/watchcat/files/initd_watchcat +++ b/utils/watchcat/files/initd_watchcat @@ -83,7 +83,7 @@ stop() { while read pid do - kill "$pid" + kill -KILL "$pid" done < "${PIDFILE}.pids" rm "${PIDFILE}.pids"