From a1302576d2bb74f3322047b61a93860c09cb0175 Mon Sep 17 00:00:00 2001 From: Jan Wagner Date: Sat, 6 Aug 2011 13:45:16 +0000 Subject: [PATCH] Suppress output on restarting via init script --- debian/changelog | 7 +++++++ debian/postfwd.init | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 517773d..7288180 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +postfwd (1.20-2) UNRELEASED; urgency=low + + * Suppress output on restarting via init script (Closes: #636782), thanks + Martin F. Krafft for reporting + + -- Jan Wagner Thu, 10 Feb 2011 08:40:51 +0100 + postfwd (1.20-1) unstable; urgency=low * New upstream release diff --git a/debian/postfwd.init b/debian/postfwd.init index 285c293..d321a18 100644 --- a/debian/postfwd.init +++ b/debian/postfwd.init @@ -86,9 +86,9 @@ case "$1" in ;; restart|force-reload) echo -n "Restarting $DESC (incl. cache): " - $0 stop + $0 stop > /dev/null sleep 1 - $0 start + $0 start > /dev/null echo "$NAME." ;; *)