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 | e999443345f40190c93a091f49efb1d2a92aa2db (patch) | |
tree | 0c8ab9e3c79074eba6d2f96807f1d4ede950245a /package/dhcp-forwarder/files/dhcp-fwd.init | |
parent | 757b54637e02a0ebe664e774ef3e81714a9ae31e (diff) |
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
Diffstat (limited to 'package/dhcp-forwarder/files/dhcp-fwd.init')
-rw-r--r-- | package/dhcp-forwarder/files/dhcp-fwd.init | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/package/dhcp-forwarder/files/dhcp-fwd.init b/package/dhcp-forwarder/files/dhcp-fwd.init new file mode 100644 index 0000000000..6ad3858e89 --- /dev/null +++ b/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 $? |