diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-05-15 13:04:57 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-05-15 13:04:57 +0000 |
commit | 611adf9b7af761ca2a9a781b6f92aa67a2d658b9 (patch) | |
tree | 58a7f6589c0a58ebaf90391a2af712f8dbc84ea1 /openwrt/package/dhcp-forwarder/ipkg | |
parent | b117fe7e0361b2513fbbb5075c70fb4a76bb05aa (diff) | |
download | mtk-20170518-611adf9b7af761ca2a9a781b6f92aa67a2d658b9.zip mtk-20170518-611adf9b7af761ca2a9a781b6f92aa67a2d658b9.tar.gz mtk-20170518-611adf9b7af761ca2a9a781b6f92aa67a2d658b9.tar.bz2 |
Fix dhcp-forwarder build, move init-script to ./files/
SVN-Revision: 909
Diffstat (limited to 'openwrt/package/dhcp-forwarder/ipkg')
-rw-r--r-- | openwrt/package/dhcp-forwarder/ipkg/dhcp-forwarder.init | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/openwrt/package/dhcp-forwarder/ipkg/dhcp-forwarder.init b/openwrt/package/dhcp-forwarder/ipkg/dhcp-forwarder.init deleted file mode 100644 index 6ad3858..0000000 --- a/openwrt/package/dhcp-forwarder/ipkg/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 $? |