Suppress output on restarting via init script

This commit is contained in:
Jan Wagner 2011-08-06 13:45:16 +00:00
parent df8eb0c719
commit a1302576d2
2 changed files with 9 additions and 2 deletions

7
debian/changelog vendored
View file

@ -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 <waja@cyconet.org> Thu, 10 Feb 2011 08:40:51 +0100
postfwd (1.20-1) unstable; urgency=low
* New upstream release

4
debian/postfwd.init vendored
View file

@ -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."
;;
*)