From: Qiang Chen Date: Fri, 18 Oct 2013 08:50:20 +0000 (+0800) Subject: openssh: fix sshd status command error prompt X-Git-Tag: 2015-4~4873 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=e7cf83ec3f39a7c41e38c6030b0d903fa7d37b2a;p=openembedded-core.git 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. Signed-off-by: Qiang Chen Signed-off-by: Richard Purdie --- 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 status) status /usr/sbin/sshd - return $? + exit $? ;; *)