lsb: add begin function to lsb_log_message

Some init scripts call a "begin" action to log early init phase
messages, e.g. openvswitch-controller.  Add the "begin" function to
lsb_log_message.

(From OE-Core rev: c956290902afd0e4f6d8f545dfe0a55796deec5e)

Signed-off-by: Paul Barrette <paul.barrette@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Paul Barrette
2013-10-29 16:52:04 -04:00
committed by Richard Purdie
parent 3d204a58b3
commit 0902b63870

View File

@@ -21,6 +21,11 @@ case "$ACTION" in
warning "$*"
echo
;;
begin)
echo -n $*
begin "$*"
echo
;;
*)
;;
esac