The init script says it has restart in the usage. But it didn't
authorErik Hovland <erik@hovland.org>
Wed, 24 May 2006 19:03:09 +0000 (19:03 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Wed, 24 May 2006 19:03:09 +0000 (19:03 +0000)
have a restart in its list of cases. So this patch adds it.

packages/kbdd/files/kbdd.init

index c9e0a0d..00aec07 100644 (file)
@@ -12,6 +12,11 @@ case $1 in
     killall kbdd
     ;;
 
+'restart')
+    $0 stop
+    $o start
+    ;;
+
 *)
     echo "usage: $0 { start | stop | restart }"
     ;;