From 49512027e3d90493eaf6617128f393a1f2d63384 Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Thu, 24 Feb 2022 18:03:33 +0100 Subject: [PATCH] Fix pidof_pandora_ha to work with PAR::Packer binaries. --- pandora_server/util/pandora_server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_server/util/pandora_server b/pandora_server/util/pandora_server index 020ded9100..3aa70431d1 100755 --- a/pandora_server/util/pandora_server +++ b/pandora_server/util/pandora_server @@ -90,7 +90,7 @@ function pidof_pandora_ha () { # in a "strech" term, ps aux don't report more than COLUMNS # characters and this will not work. COLUMNS=300 - PANDORA_PID=`ps aux | grep "$PANDORA_HA -d -p $PID_DIR/pandora_ha.pid $PANDORA_HOME" | grep -v grep | tail -1 | awk '{ print $2 }'` + PANDORA_PID=`ps aux | grep "$PANDORA_HA" | grep "$PANDORA_HOME" | grep -v grep | tail -1 | awk '{ print $2 }'` echo $PANDORA_PID }