From 63b9d565c74e376b194fdb0691c96e85efdab915 Mon Sep 17 00:00:00 2001 From: Ben Peddell Date: Thu, 15 Jul 2021 08:20:15 +1000 Subject: [PATCH] Fix lsof not being used when it is not at /usr/sbin/lsof --- tools/arkmanager | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/arkmanager b/tools/arkmanager index 8c59832..f30f31f 100755 --- a/tools/arkmanager +++ b/tools/arkmanager @@ -968,7 +968,7 @@ function isTheServerRunning(){ function isTheServerUp(){ local ip="$(getMultiHome)" result=1 - if [ -x "$lsof" ]; then + if [ -x "$( which "$lsof" )" ]; then "$lsof" -w -i "${ip:+udp@}${ip}:$(getGamePort)" > /dev/null result=$? fi