Source: rpcbind Source-Version: 0.2.3-0.2 Severity: wishlist Tags: patch Hi!
The attached patch fixes the LSB init script to have more consistent output. Thanks, Guillem
From c4c478fcf4b1ee4666faabe5dce08a976a7d67b3 Mon Sep 17 00:00:00 2001 From: Guillem Jover <[email protected]> Date: Sat, 30 Apr 2016 16:24:18 +0200 Subject: [PATCH] rpcbind: Fix LSB init output --- debian/init.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/init.d b/debian/init.d index bdcb189..48dd221 100644 --- a/debian/init.d +++ b/debian/init.d @@ -57,7 +57,7 @@ start () log_action_msg "Already running: rcpbind" exit 0 fi - log_begin_msg "Starting rpcbind daemon..." + log_daemon_msg "Starting RPC port mapper daemon" "rpcbind" start-stop-daemon --start --quiet --oknodo --exec /sbin/rpcbind -- "$@" pid=$( pidofproc /sbin/rpcbind ) echo -n "$pid" >"$PIDFILE" @@ -69,7 +69,7 @@ start () stop () { - log_begin_msg "Stopping rpcbind daemon..." + log_daemon_msg "Stopping RPC port mapper daemon" "rpcbind" start-stop-daemon --stop --quiet --oknodo --exec /sbin/rpcbind rm -f "$PIDFILE" log_end_msg $? -- 2.8.1

