From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 1/2] initscripts: Fix wrong variable check for $PIDFILE in getpids Date: Thu, 11 Jan 2024 15:21:07 +0000 Message-ID: <20240111152108.4041802-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4909137992297726743==" List-Id: --===============4909137992297726743== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable getpids() checked whether it needed to pass a pid file to pidofproc, but the check was inverted. Signed-off-by: Daniel Weism=C3=BCller --- src/initscripts/system/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/initscripts/system/functions b/src/initscripts/system/functi= ons index 6f53a941b..e4cb30456 100644 --- a/src/initscripts/system/functions +++ b/src/initscripts/system/functions @@ -407,7 +407,7 @@ pidofproc() # This will ensure compatibility with previous LFS Bootscripts getpids() { - if [ -z "${PIDFILE}" ]; then + if [ -n "${PIDFILE}" ]; then pidofproc -s -p "${PIDFILE}" $@ else pidofproc -s $@ --=20 2.39.2 --===============4909137992297726743==--