diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2013-08-19 04:22:26 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-26 11:47:17 +0100 |
commit | 00f0261536ee183fd3857d8999aa978cfc2c3b09 (patch) | |
tree | cd48dd1556a92c84a14f28550de78eb3c43ca437 /meta/recipes-core/dbus | |
parent | f032008b12cbbb5b4e54cdf6eef024fa5d4f695e (diff) | |
download | poky-00f0261536ee183fd3857d8999aa978cfc2c3b09.tar.gz |
dbus: add init.d/dbus-1 status command for LSB compliance
(From OE-Core rev: 9262d3b06eee7e698c990399d2f10b7d68d17211)
Signed-off-by: Li Wang <li.wang@windriver.com>
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/dbus')
-rw-r--r-- | meta/recipes-core/dbus/dbus-1.6.10/dbus-1.init | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/meta/recipes-core/dbus/dbus-1.6.10/dbus-1.init b/meta/recipes-core/dbus/dbus-1.6.10/dbus-1.init index 0351190af7..04025e65f8 100644 --- a/meta/recipes-core/dbus/dbus-1.6.10/dbus-1.init +++ b/meta/recipes-core/dbus/dbus-1.6.10/dbus-1.init | |||
@@ -16,6 +16,9 @@ | |||
16 | 16 | ||
17 | set -e | 17 | set -e |
18 | 18 | ||
19 | # Source function library. | ||
20 | . /etc/init.d/functions | ||
21 | |||
19 | DAEMON=@bindir@/dbus-daemon | 22 | DAEMON=@bindir@/dbus-daemon |
20 | NAME=dbus | 23 | NAME=dbus |
21 | DAEMONUSER=messagebus # must match /etc/dbus-1/system.conf | 24 | DAEMONUSER=messagebus # must match /etc/dbus-1/system.conf |
@@ -99,6 +102,10 @@ case "$1" in | |||
99 | stop) | 102 | stop) |
100 | shut_it_down | 103 | shut_it_down |
101 | ;; | 104 | ;; |
105 | status) | ||
106 | status $DAEMON | ||
107 | exit $? | ||
108 | ;; | ||
102 | reload|force-reload) | 109 | reload|force-reload) |
103 | reload_it | 110 | reload_it |
104 | ;; | 111 | ;; |
@@ -108,7 +115,7 @@ case "$1" in | |||
108 | start_it_up | 115 | start_it_up |
109 | ;; | 116 | ;; |
110 | *) | 117 | *) |
111 | echo "Usage: /etc/init.d/$NAME {start|stop|restart|reload|force-reload}" >&2 | 118 | echo "Usage: /etc/init.d/$NAME {start|stop|status|restart|reload|force-reload}" >&2 |
112 | exit 1 | 119 | exit 1 |
113 | ;; | 120 | ;; |
114 | esac | 121 | esac |