diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-15 13:04:57 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-15 13:04:57 +0000 |
commit | d22365ac3561c89d8f978758a5c4ecb1074edf96 (patch) | |
tree | 58a7f6589c0a58ebaf90391a2af712f8dbc84ea1 /openwrt/package/dhcp-forwarder/files | |
parent | b3f18253a22bb3d9851e1b70e455355d1522d235 (diff) |
Fix dhcp-forwarder build, move init-script to ./files/
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@909 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/dhcp-forwarder/files')
-rw-r--r-- | openwrt/package/dhcp-forwarder/files/dhcp-fwd.init | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/openwrt/package/dhcp-forwarder/files/dhcp-fwd.init b/openwrt/package/dhcp-forwarder/files/dhcp-fwd.init new file mode 100644 index 0000000000..6ad3858e89 --- /dev/null +++ b/openwrt/package/dhcp-forwarder/files/dhcp-fwd.init @@ -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 $? |