On 01/26/2014 06:07 PM, Yue Tao wrote:
$/etc/init.d/avahi-daemon stop
$service --status-all
[ + ] avahi-daemon

Add return value of status()


The short message needs to be formatted correctly:

avahi: <short log>

Also this patch is not added to the recipe file.

Signed-off-by: Yue Tao <[email protected]>
---
  .../avahi/files/add_return_value_of_status.patch   |   21 ++++++++++++++++++++
  1 files changed, 21 insertions(+), 0 deletions(-)
  create mode 100644 
meta/recipes-connectivity/avahi/files/add_return_value_of_status.patch

diff --git 
a/meta/recipes-connectivity/avahi/files/add_return_value_of_status.patch 
b/meta/recipes-connectivity/avahi/files/add_return_value_of_status.patch
new file mode 100644
index 0000000..db80da8
--- /dev/null
+++ b/meta/recipes-connectivity/avahi/files/add_return_value_of_status.patch
@@ -0,0 +1,21 @@

No Signed-off-by: or Upstream-Status: tags here

Sau!

+--- a/initscript/debian/avahi-daemon.in
++++ b/initscript/debian/avahi-daemon.in
+@@ -36,6 +36,8 @@
+ # Authors:      <[email protected]>
+ #
+
++. /etc/init.d/functions
++
+ if [ -f /lib/lsb/init-functions ]
+ then
+     . /lib/lsb/init-functions
+@@ -153,7 +155,8 @@ d_reload() {
+ #       Function that check the status of the daemon/service.
+ #
+ d_status() {
+-    $DAEMON -c && echo "$DESC is running" || echo "$DESC is not running"
++    status $DAEMON
++    exit $?
+ }
+
+ case "$1" in

_______________________________________________
Openembedded-core mailing list
[email protected]
http://lists.openembedded.org/mailman/listinfo/openembedded-core

Reply via email to