diff options
author | Jesse Zhang <sen.zhang@windriver.com> | 2013-02-20 03:12:02 +0000 |
---|---|---|
committer | Paul Eggleton <paul.eggleton@linux.intel.com> | 2013-05-31 16:03:38 +0100 |
commit | 74c3959c7b4554fa706cfb177446050798be67b5 (patch) | |
tree | 2c5d3a00ee302da4f6ff4eb0c8ec0dd4fae45256 | |
parent | 8d88215a4eb377a1629f21a554f411a1d745889e (diff) | |
download | openembedded-core-74c3959c7b4554fa706cfb177446050798be67b5.tar.gz openembedded-core-74c3959c7b4554fa706cfb177446050798be67b5.tar.bz2 openembedded-core-74c3959c7b4554fa706cfb177446050798be67b5.zip |
initscripts: let status return 0 when proc is running well
Ensure that the status returns 0 instead of the last shell command result,
otherwise the calling script can not properly detect the status of pid.
(From OE-Core master rev: d9d4fdc769dfe6bf9838f5c5f3189a80f0e3cf90)
Signed-off-by: Jesse Zhang <sen.zhang@windriver.com>
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/initscripts/initscripts-1.0/functions | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-core/initscripts/initscripts-1.0/functions b/meta/recipes-core/initscripts/initscripts-1.0/functions index 944e3a59b0..8e15762f8a 100644 --- a/meta/recipes-core/initscripts/initscripts-1.0/functions +++ b/meta/recipes-core/initscripts/initscripts-1.0/functions @@ -52,6 +52,7 @@ status() { pid=`pidofproc $1` if [ -n "$pid" ]; then echo "$1 (pid $pid) is running..." + return 0 else echo "$1 is stopped" fi |