aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/kbdd/files/kbdd.init
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/kbdd/files/kbdd.init')
-rw-r--r--recipes/kbdd/files/kbdd.init25
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes/kbdd/files/kbdd.init b/recipes/kbdd/files/kbdd.init
new file mode 100644
index 0000000000..00aec07aa7
--- /dev/null
+++ b/recipes/kbdd/files/kbdd.init
@@ -0,0 +1,25 @@
+#!/bin/sh
+#
+
+. /etc/profile
+
+case $1 in
+'start')
+ /usr/sbin/kbdd -c /etc/kbdd.conf > /dev/null 2>&1 &
+ ;;
+
+'stop')
+ killall kbdd
+ ;;
+
+'restart')
+ $0 stop
+ $o start
+ ;;
+
+*)
+ echo "usage: $0 { start | stop | restart }"
+ ;;
+
+esac
+