summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorJesse Zhang <sen.zhang@windriver.com>2013-02-20 03:12:02 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-30 20:59:11 +0100
commit3f561e9b3e0013250ddca8120b95a20aab78f93c (patch)
tree1cfc152cfacfb028b9760d9c1e6141c032a65048 /meta
parent35c9b6e1b6f0fd4a609fcbf595124d6c65847804 (diff)
downloadpoky-3f561e9b3e0013250ddca8120b95a20aab78f93c.tar.gz
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 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>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-core/initscripts/initscripts-1.0/functions1
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() {
52 pid=`pidofproc $1` 52 pid=`pidofproc $1`
53 if [ -n "$pid" ]; then 53 if [ -n "$pid" ]; then
54 echo "$1 (pid $pid) is running..." 54 echo "$1 (pid $pid) is running..."
55 return 0
55 else 56 else
56 echo "$1 is stopped" 57 echo "$1 is stopped"
57 fi 58 fi