summaryrefslogtreecommitdiffstats
path: root/openwrt/package/lighttpd/files/lighttpd.init
diff options
context:
space:
mode:
Diffstat (limited to 'openwrt/package/lighttpd/files/lighttpd.init')
-rw-r--r--openwrt/package/lighttpd/files/lighttpd.init24
1 files changed, 0 insertions, 24 deletions
diff --git a/openwrt/package/lighttpd/files/lighttpd.init b/openwrt/package/lighttpd/files/lighttpd.init
deleted file mode 100644
index ca7a3f97f5..0000000000
--- a/openwrt/package/lighttpd/files/lighttpd.init
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-BIN=lighttpd
-DEFAULT=/etc/default/$BIN
-LOG_D=/var/log/$BIN
-RUN_D=/var/run
-PID_F=$RUN_D/$BIN.pid
-[ -f $DEFAULT ] && . $DEFAULT
-
-case $1 in
- start)
- mkdir -p $LOG_D
- mkdir -p $RUN_D
- $BIN $OPTIONS
- ;;
- stop)
- [ -f $PID_F ] && kill $(cat $PID_F)
- ;;
- *)
- echo "usage: $0 (start|stop)"
- exit 1
-esac
-
-exit $?