diff options
author | Lu Chong <Chong.Lu@windriver.com> | 2013-10-22 17:40:22 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-30 13:39:13 +0000 |
commit | af7a27b315e2f853013259258f38d7b64e5c371d (patch) | |
tree | 1eee0e430d1dbd225e9f9f648d173a91fe8e73fd /meta/recipes-core | |
parent | 6583f6286182cf0b786385d6c4ecc28f0d6919ff (diff) | |
download | poky-af7a27b315e2f853013259258f38d7b64e5c371d.tar.gz |
dbus: no messages of status command print
/etc/init.d/dbus-1 use "set -e" to let the script exit when any command failes.
This will cause "/etc/init.d/dbus-1 status" command can't display messages when dbus is stopped.
(From OE-Core rev: 9844b5e2a544b2c2f76aac497c3a2cdfcc46577c)
Signed-off-by: Lu Chong <Chong.Lu@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')
-rw-r--r-- | meta/recipes-core/dbus/dbus-1.6.10/dbus-1.init | 2 |
1 files changed, 1 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 04025e65f8..42c86297c3 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 | |||
@@ -14,7 +14,7 @@ | |||
14 | # Debian init.d script for D-BUS | 14 | # Debian init.d script for D-BUS |
15 | # Copyright © 2003 Colin Walters <walters@debian.org> | 15 | # Copyright © 2003 Colin Walters <walters@debian.org> |
16 | 16 | ||
17 | set -e | 17 | # set -e |
18 | 18 | ||
19 | # Source function library. | 19 | # Source function library. |
20 | . /etc/init.d/functions | 20 | . /etc/init.d/functions |