move old kamikaze out of trunk - will put buildroot-ng in there as soon as all the...
[openwrt/openwrt.git] / openwrt / package / fakeidentd / files / fakeidentd.init
diff --git a/openwrt/package/fakeidentd/files/fakeidentd.init b/openwrt/package/fakeidentd/files/fakeidentd.init
deleted file mode 100644 (file)
index 954ad8c..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-NAME=fakeidentd
-case "$1" in
-  start)
-       [ -e $DEFAULT ] && $NAME $DEFAULT
-       ;;
-  stop)
-        killall $NAME
-       ;;
-  restart)
-       killall $NAME
-       $NAME
-       ;;
-  *)
-       echo "Usage: $NAME (start|stop|restart)" > 2&
-       exit 1
-       ;;
-esac