1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

Fix dhcp-forwarder build, move init-script to ./files/

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@909 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico
2005-05-15 13:04:57 +00:00
parent 757b54637e
commit e999443345
4 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,21 @@
#!/bin/sh
LOG_D=/var/log
RUN_D=/var/run
PID_F=$RUN_D/dhcpd-fwd.pid
case $1 in
start)
[ -d $LOG_D ] || mkdir -p $LOG_D
[ -d $RUN_D ] || mkdir -p $RUN_D
dhcp-fwd
;;
stop)
[ -f $PID_F ] && kill $(cat $PID_F)
;;
*)
echo "usage: $0 (start|stop)"
exit 1
esac
exit $?