From: Holger Sunke <holger.sunke@posteo.de>
To: development@lists.ipfire.org
Subject: Re: [RFC PATCH] initscripts: Add switch to start processes in background
Date: Wed, 28 Jul 2021 17:31:47 +0000 [thread overview]
Message-ID: <5811d6b8-80c2-6ae5-5ac6-bc73e566e07f@posteo.de> (raw)
In-Reply-To: <20210727085900.2253-1-michael.tremer@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1697 bytes --]
This works for me, thank you.
Am 27.07.21 um 10:59 schrieb Michael Tremer:
> Since systemd, many programs no longer behave like a well-behaved
> daemon. To avoid any extra solutions, this patch adds a -b switch which
> will start a program in the background and throw away any output.
>
> The behaviour remains unchanged for any other programs.
>
> Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
> ---
> src/initscripts/system/functions | 17 +++++++++++++++--
> 1 file changed, 15 insertions(+), 2 deletions(-)
>
> diff --git a/src/initscripts/system/functions b/src/initscripts/system/functions
> index d610a524d..e44a2b4a1 100644
> --- a/src/initscripts/system/functions
> +++ b/src/initscripts/system/functions
> @@ -436,6 +436,7 @@ getpids()
> #*******************************************************************************
> loadproc()
> {
> + local background=""
> local pidfile=""
> local forcestart=""
> local nicelevel=""
> @@ -448,6 +449,10 @@ loadproc()
> while true
> do
> case "${1}" in
> + -b)
> + background="1"
> + shift 1
> + ;;
> -f)
> forcestart="1"
> shift 1
> @@ -506,8 +511,16 @@ loadproc()
> cmd="nice -n "${nicelevel}" ${cmd}"
> fi
>
> - ${cmd}
> - evaluate_retval # This is "Probably" not LSB compliant, but required to be compatible with older bootscripts
> + if [ -n "${background}" ]; then
> + (
> + ${cmd} &>/dev/null
> + ) &
> + evaluate_retval
> + else
> + ${cmd}
> + evaluate_retval # This is "Probably" not LSB compliant, but required to be compatible with older bootscripts
> + fi
> +
> return 0
> }
>
>
next prev parent reply other threads:[~2021-07-28 17:31 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-27 8:59 Michael Tremer
2021-07-28 17:31 ` Holger Sunke [this message]
2021-08-04 14:34 ` Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5811d6b8-80c2-6ae5-5ac6-bc73e566e07f@posteo.de \
--to=holger.sunke@posteo.de \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox