From: Michael Tremer <michael.tremer@ipfire.org>
To: network@lists.ipfire.org
Subject: Re: [PATCH] Print better info mesages when we change a service
Date: Sat, 10 Feb 2018 14:41:16 +0000 [thread overview]
Message-ID: <1518273676.2541.133.camel@ipfire.org> (raw)
In-Reply-To: <1518264894-8343-1-git-send-email-jonatan.schlag@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1308 bytes --]
Why do we need this?
Best,
-Michael
On Sat, 2018-02-10 at 12:14 +0000, Jonatan Schlag wrote:
> Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
> ---
> src/functions/functions.service | 17 ++++++++++++++++-
> 1 file changed, 16 insertions(+), 1 deletion(-)
>
> diff --git a/src/functions/functions.service b/src/functions/functions.service
> index 7a12ffd..07bd2cd 100644
> --- a/src/functions/functions.service
> +++ b/src/functions/functions.service
> @@ -45,6 +45,11 @@ service_stop() {
> assert isset name
>
> systemctl stop "${name}"
> + local ret=$?
> +
> + log INFO "Stopped service '${name}', code=${ret}"
> +
> + return ${ret}
> }
>
> service_restart() {
> @@ -52,6 +57,11 @@ service_restart() {
> assert isset name
>
> systemctl restart "${name}"
> + local ret=$?
> +
> + log INFO "Restarted service '${name}', code=${ret}"
> +
> + return ${ret}
> }
>
> service_reload() {
> @@ -60,7 +70,12 @@ service_reload() {
>
> if service_status "${name}"; then
> systemctl reload "${name}"
> - return $?
> + local ret=$?
> +
> + log INFO "Reloaded service '${name}', code=${ret}"
> +
> + return ${ret}
> +
> else
> log WARNING "Cannot reload service '${name}' which is
> currently not running."
> fi
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
prev parent reply other threads:[~2018-02-10 14:41 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-10 12:14 Jonatan Schlag
2018-02-10 14:41 ` Michael Tremer [this message]
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=1518273676.2541.133.camel@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=network@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