diff options
author | Qiang Chen <qiang.chen@windriver.com> | 2013-10-18 16:50:20 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-18 15:58:16 +0100 |
commit | 63534ab9679d89ef617e8598d27d17d6a57cbf8b (patch) | |
tree | 7bf28afbdc132e1b6065d050782cee2ba9dfa8f7 /meta/recipes-connectivity | |
parent | d3cb36936521b69c826f2a6da4ccdf2b278b529d (diff) | |
download | poky-63534ab9679d89ef617e8598d27d17d6a57cbf8b.tar.gz |
openssh: fix sshd status command error prompt
sshd status command results in error prompt:
root@qemu0:~# /etc/init.d/sshd status
/usr/sbin/sshd (pid 1199) is running...
/etc/init.d/sshd: line 100: return: can only `return' from a
function or sourced script
"service --status-all" command also display wrong status for sshd.
This commit fix this error prompt and make service command display
right status for sshd.
(From OE-Core rev: e7cf83ec3f39a7c41e38c6030b0d903fa7d37b2a)
Signed-off-by: Qiang Chen <qiang.chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r-- | meta/recipes-connectivity/openssh/openssh-6.2p2/init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/openssh/openssh-6.2p2/init b/meta/recipes-connectivity/openssh/openssh-6.2p2/init index 266689c2cf..e7f3971324 100644 --- a/meta/recipes-connectivity/openssh/openssh-6.2p2/init +++ b/meta/recipes-connectivity/openssh/openssh-6.2p2/init | |||
@@ -97,7 +97,7 @@ case "$1" in | |||
97 | 97 | ||
98 | status) | 98 | status) |
99 | status /usr/sbin/sshd | 99 | status /usr/sbin/sshd |
100 | return $? | 100 | exit $? |
101 | ;; | 101 | ;; |
102 | 102 | ||
103 | *) | 103 | *) |