From: Erik Hovland Date: Wed, 24 May 2006 19:03:09 +0000 (+0000) Subject: The init script says it has restart in the usage. But it didn't X-Git-Tag: Release-2010-05/1~9453^2~1624^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de1d2a3d79046f46866116bbb47b5f5b1391938d;p=openembedded.git The init script says it has restart in the usage. But it didn't have a restart in its list of cases. So this patch adds it. --- diff --git a/packages/kbdd/files/kbdd.init b/packages/kbdd/files/kbdd.init index c9e0a0deac..00aec07aa7 100644 --- a/packages/kbdd/files/kbdd.init +++ b/packages/kbdd/files/kbdd.init @@ -12,6 +12,11 @@ case $1 in killall kbdd ;; +'restart') + $0 stop + $o start + ;; + *) echo "usage: $0 { start | stop | restart }" ;;