From 54b4c50a60ad3a4ce05604c77d9b811e2fd0410b Mon Sep 17 00:00:00 2001 From: Amy Fong Date: Fri, 27 Jul 2012 11:06:55 -0400 Subject: openssh: openssh's init fails to restart if sshd is not running openssh: openssh's init fails to restart if sshd is not running Because of "set -e", it's necessary to specify the -o (or --oknodo) so that start-stop-daemon returns an exit status of 0 if no actions are taken. (From OE-Core rev: 7e44d2e8457c9c90932ce4f0fd95c67b74efb2e0) Signed-off-by: Amy Fong Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/recipes-connectivity/openssh/openssh-6.0p1/init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/recipes-connectivity') diff --git a/meta/recipes-connectivity/openssh/openssh-6.0p1/init b/meta/recipes-connectivity/openssh/openssh-6.0p1/init index 055dd22e1b..cde52ef3f4 100644 --- a/meta/recipes-connectivity/openssh/openssh-6.0p1/init +++ b/meta/recipes-connectivity/openssh/openssh-6.0p1/init @@ -76,7 +76,7 @@ case "$1" in check_keys check_config echo -n "Restarting OpenBSD Secure Shell server: sshd" - start-stop-daemon -K -x /usr/sbin/sshd + start-stop-daemon -K -oknodo -x /usr/sbin/sshd check_for_no_start check_privsep_dir sleep 2 -- cgit v1.2.3-54-g00ecf