From: Nick Porter Date: Mon, 14 Jul 2025 08:14:43 +0000 (+0100) Subject: The pid file may reference a process that doesn't exist X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef858fc01afa36d838d034c79e0b5925265aa3da;p=thirdparty%2Ffreeradius-server.git The pid file may reference a process that doesn't exist --- diff --git a/scripts/ci/openresty-setup.sh b/scripts/ci/openresty-setup.sh index 38631db569..c97d81f4eb 100755 --- a/scripts/ci/openresty-setup.sh +++ b/scripts/ci/openresty-setup.sh @@ -47,7 +47,7 @@ echo "Checking for a running openresty instance" if [ -e "${LOGDIR}/nginx.pid" ] then echo "Stopping the current openresty instance" - kill "$(cat ${LOGDIR}/nginx.pid)" + kill "$(cat ${LOGDIR}/nginx.pid)" || true rm -r "${BUILDDIR}" fi