move old kamikaze out of trunk - will put buildroot-ng in there as soon as all the...
[openwrt/svn-archive/archive.git] / openwrt / package / peerguardian / files / peerguardian.init
diff --git a/openwrt/package/peerguardian/files/peerguardian.init b/openwrt/package/peerguardian/files/peerguardian.init
deleted file mode 100644 (file)
index 5807314..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-
-BIN=pgtext
-DEFAULT=/etc/default/$BIN
-[ -f $DEFAULT ] && . $DEFAULT
-RUN_D=/var/run
-PID_F=$RUN_D/$BIN_${IF}_${ID}.pid
-
-case $1 in
- start)
-  $BIN $OPTIONS
-  ;;
- stop)
-  [ -f $PID_F ] && kill $(cat $PID_F) >/dev/null 2>&1
-  ;;
- *)
-  echo "usage: $0 (start|stop)"
-  exit 1
-esac
-
-exit $?