diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-04-18 21:54:20 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-04-18 21:54:20 +0000 |
commit | d083fe8f0eb8456b095e5bdba9a7982c19725609 (patch) | |
tree | 01784bee5915db33768f0b8ce49c9e71b3a82140 /openwrt/package/dhcp-forwarder/dhcp-forwarder.init | |
parent | 2b5618fd9d7e7ac1a0c3b5f1c8fd290271baefcc (diff) |
Change dhcp-forwarder, rename config var, uniformize package makefile, move ipkg related files to ./ipkg
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@680 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/dhcp-forwarder/dhcp-forwarder.init')
-rw-r--r-- | openwrt/package/dhcp-forwarder/dhcp-forwarder.init | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/openwrt/package/dhcp-forwarder/dhcp-forwarder.init b/openwrt/package/dhcp-forwarder/dhcp-forwarder.init deleted file mode 100644 index 6ad3858e8..000000000 --- a/openwrt/package/dhcp-forwarder/dhcp-forwarder.init +++ /dev/null @@ -1,21 +0,0 @@ -#!/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 $? |