[oe-commits] [openembedded-core] branch master updated: busybox: Fix typo in syslog initscript

git at git.openembedded.org git at git.openembedded.org
Thu Jun 27 12:29:14 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

The following commit(s) were added to refs/heads/master by this push:
     new 9f674a8  busybox: Fix typo in syslog initscript
9f674a8 is described below

commit 9f674a88c781c7092d5b3460922a1579b9fe4bf9
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Thu Jun 27 13:27:43 2019 +0100

    busybox: Fix typo in syslog initscript
    
    The change to ensure the existing processes shut down had a clear copy
    and paste error. This really fixes syslog to avoid errors on restart.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-core/busybox/files/syslog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/busybox/files/syslog b/meta/recipes-core/busybox/files/syslog
index 49033c1..2208613 100644
--- a/meta/recipes-core/busybox/files/syslog
+++ b/meta/recipes-core/busybox/files/syslog
@@ -82,7 +82,7 @@ case "$1" in
 	;;
   restart)
 	pid1=`pidof syslogd`
-	pid2=`pidof syslogd`
+	pid2=`pidof klogd`
 	$0 stop
 	waitpid $pid1
 	waitpid $pid2

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list