kiss-stj

My KISS Linux repo for software I use on my computers.
git clone https://git.stjo.hn/kiss-stj
Log | Files | Refs | README | LICENSE

commit 00ac9f89a40313434d3dec740df7d09a0aa51b54
parent f70ea275925dc35e5c41dc36b9957406b4bf200b
Author: St John Karp <contact@stjo.hn>
Date:   Mon,  6 Jun 2022 18:16:27 -0400

nldev: Update service file to check for nldev

Previously the service file checked for a running run_nldev process,
which seemed to work with Busybox pidof. This failed with ubase pidof,
however, so I've switched it to check for a running nldev process.

Diffstat:
Mcore/svc/files/nldev | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/svc/files/nldev b/core/svc/files/nldev @@ -1,6 +1,6 @@ #!/bin/sh -PID=$(pidof -o %PPID run_nldev) +PID=$(pidof -o %PPID nldev) case $1 in -s)