move old kamikaze out of trunk - will put buildroot-ng in there as soon as all the...
[openwrt/openwrt.git] / openwrt / package / php4 / files / php.init
diff --git a/openwrt/package/php4/files/php.init b/openwrt/package/php4/files/php.init
deleted file mode 100644 (file)
index b29387b..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-export PHP_FCGI_CHILDREN=''
-PORT=1026
-BIN=/usr/sbin/php
-
-case $1 in
- start)
-  $BIN -b $PORT &
-  ;;
- stop)
-  kill `pidof php`
-  ;;
- *)
-  echo "usage: $0 (start|stop)"
-  exit 1
-esac
-
-exit $?