From 4c3826e7550920b4e5cdc0ee8d2253c4aac76d34 Mon Sep 17 00:00:00 2001 From: Victor Seva Date: Thu, 30 Jul 2020 17:35:56 +0200 Subject: [PATCH] Revert "TT#87502 Update pid_watcher to check sems-b2b instead of ngcp-sems and sems-pbx" This reverts commit 2cfbd49bba6afdc78957c22cd893b5fcb5648452. Change-Id: Ia86f79720ba8c87b1ce823f4505eac31758ac29a --- bin/pid_watcher.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bin/pid_watcher.py b/bin/pid_watcher.py index ab976f1f..7ba063ab 100755 --- a/bin/pid_watcher.py +++ b/bin/pid_watcher.py @@ -41,13 +41,13 @@ files we want to watch services = [ 'kamailio/kamailio.lb.pid', 'kamailio/kamailio.proxy.pid', - 'sems-b2b/sems-b2b.pid', + 'ngcp-sems/ngcp-sems.pid', 'ngcp-witnessd.pid' ] watched_dirs = [ '/run/kamailio', - '/run/sems-b2b', + '/run/ngcp-sems', '/run' ] @@ -110,9 +110,11 @@ args = parser.parse_args() if args.pbx: watched_dirs += [ + '/run/sems-pbx', '/run/fastcgi', ] services += [ + 'sems-pbx/sems-pbx.pid', 'fastcgi/ngcp-panel.pid', ]