Suppress output on restarting via init script
This commit is contained in:
parent
df8eb0c719
commit
a1302576d2
7
debian/changelog
vendored
7
debian/changelog
vendored
|
@ -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
|
postfwd (1.20-1) unstable; urgency=low
|
||||||
|
|
||||||
* New upstream release
|
* New upstream release
|
||||||
|
|
4
debian/postfwd.init
vendored
4
debian/postfwd.init
vendored
|
@ -86,9 +86,9 @@ case "$1" in
|
||||||
;;
|
;;
|
||||||
restart|force-reload)
|
restart|force-reload)
|
||||||
echo -n "Restarting $DESC (incl. cache): "
|
echo -n "Restarting $DESC (incl. cache): "
|
||||||
$0 stop
|
$0 stop > /dev/null
|
||||||
sleep 1
|
sleep 1
|
||||||
$0 start
|
$0 start > /dev/null
|
||||||
echo "$NAME."
|
echo "$NAME."
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
|
Loading…
Reference in a new issue