1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-12 10:37:07 +03:00
openwrt-xburst/package/mini_httpd/files/mini_httpd.init
nico 428aafa72a Add mini_httpd package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1267 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-06-17 06:22:46 +00:00

22 lines
307 B
Bash

#!/bin/sh
DEFAULT=/etc/default/mini_httpd
RUN_D=/var/run
PID_F=$RUN_D/mini_httpd.pid
[ -f $DEFAULT ] && . $DEFAULT
case $1 in
start)
[ -d $RUN_D ] || mkdir -p $RUN_D
mini_httpd $OPTIONS
;;
stop)
[ -f $PID_F ] && kill $(cat $PID_F)
;;
*)
echo "usage: $0 (start|stop)"
exit 1
esac
exit $?