public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/2] initscripts: Fix wrong variable check for $PIDFILE in getpids
@ 2024-01-11 15:21 Michael Tremer
  2024-01-11 15:21 ` [PATCH 2/2] initscripts: Implement storing PIDs in loadproc Michael Tremer
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Tremer @ 2024-01-11 15:21 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 721 bytes --]

getpids() checked whether it needed to pass a pid file to pidofproc, but
the check was inverted.

Signed-off-by: Daniel Weismüller <daniel.weismueller(a)ipfire.org>
---
 src/initscripts/system/functions | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/initscripts/system/functions b/src/initscripts/system/functions
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 $@
-- 
2.39.2


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-01-11 15:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-11 15:21 [PATCH 1/2] initscripts: Fix wrong variable check for $PIDFILE in getpids Michael Tremer
2024-01-11 15:21 ` [PATCH 2/2] initscripts: Implement storing PIDs in loadproc Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox