From a85a0f19dada73f66f8026bb1388857f9df7694b Mon Sep 17 00:00:00 2001 From: bol-van Date: Wed, 13 Nov 2024 14:23:47 +0300 Subject: [PATCH] init.d: sysv do not hide error messages from daemons. remove start-stop-daemon --- init.d/sysv/functions | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/init.d/sysv/functions b/init.d/sysv/functions index 2ba59cd..0897607 100644 --- a/init.d/sysv/functions +++ b/init.d/sysv/functions @@ -169,20 +169,16 @@ run_daemon() local DAEMONBASE="$(basename "$2")" local PIDFILE=$PIDDIR/$DAEMONBASE$1.pid echo "Starting daemon $1: $2 $3" - if exists start-stop-daemon ; then - start-stop-daemon -S -p "$PIDFILE" -m -b -x "$2" -- $3 + if [ -f "$PIDFILE" ] && pgrep -F "$PIDFILE" "$DAEMONBASE" >/dev/null; then + echo already running else - if [ -f "$PIDFILE" ] && pgrep -F "$PIDFILE" "$DAEMONBASE" >/dev/null; then - echo already running + "$2" $3 >/dev/null & + PID=$! + if [ -n "$PID" ]; then + echo $PID >$PIDFILE else - "$2" $3 >/dev/null 2>/dev/null & - PID=$! - if [ -n "$PID" ]; then - echo $PID >$PIDFILE - else - echo could not start daemon $1 : $2 $3 - false - fi + echo could not start daemon $1 : $2 $3 + false fi fi }