* [PATCH] The status for "service --status-all" is wrong after stop avahi-daemon
@ 2014-01-27 2:07 Yue Tao
2014-01-28 18:22 ` Saul Wold
0 siblings, 1 reply; 2+ messages in thread
From: Yue Tao @ 2014-01-27 2:07 UTC (permalink / raw)
To: openembedded-core; +Cc: yue.tao
$/etc/init.d/avahi-daemon stop
$service --status-all
[ + ] avahi-daemon
Add return value of status()
Signed-off-by: Yue Tao <Yue.Tao@windriver.com>
---
.../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 @@
+--- a/initscript/debian/avahi-daemon.in
++++ b/initscript/debian/avahi-daemon.in
+@@ -36,6 +36,8 @@
+ # Authors: <sebastien.estienne@gmail.com>
+ #
+
++. /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
--
1.7.5.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] The status for "service --status-all" is wrong after stop avahi-daemon
2014-01-27 2:07 [PATCH] The status for "service --status-all" is wrong after stop avahi-daemon Yue Tao
@ 2014-01-28 18:22 ` Saul Wold
0 siblings, 0 replies; 2+ messages in thread
From: Saul Wold @ 2014-01-28 18:22 UTC (permalink / raw)
To: Yue Tao, openembedded-core
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 <Yue.Tao@windriver.com>
> ---
> .../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: <sebastien.estienne@gmail.com>
> + #
> +
> ++. /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
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-01-28 18:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-27 2:07 [PATCH] The status for "service --status-all" is wrong after stop avahi-daemon Yue Tao
2014-01-28 18:22 ` Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox