X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=debian%2Fmetaproxy.init;h=0fb2f264497f4f8d4292654efb92202e844dcfd9;hb=a559c2581b7bfa0f45a10a2dd1a149f7554603cf;hp=90f558bf23af5f58519ddb65961faabb22ada7ed;hpb=82b7a4b2417637a9ea05f21ba234d8388b8edad9;p=metaproxy-moved-to-github.git diff --git a/debian/metaproxy.init b/debian/metaproxy.init index 90f558b..0fb2f26 100644 --- a/debian/metaproxy.init +++ b/debian/metaproxy.init @@ -96,7 +96,10 @@ case "$1" in do_start case "$?" in 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; - 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; + 2) [ "$VERBOSE" = no ] && \ + log_daemon_msg "Starting $DESC" "$NAME" + log_end_msg 1 + ;; esac ;; stop) @@ -104,7 +107,10 @@ case "$1" in do_stop case "$?" in 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; - 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; + 2) [ "$VERBOSE" = no ] && \ + log_daemon_msg "Stopping $DESC" "$NAME" + log_end_msg 1 + ;; esac ;; #reload|force-reload)