mirror of
https://github.com/eliasstepanik/ark-ac-server-tools.git
synced 2026-01-11 10:38:27 +00:00
Fix lsof not being used when it is not at /usr/sbin/lsof
This commit is contained in:
parent
10f7cdf466
commit
63b9d565c7
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user