diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-07 11:34:35 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-07 11:34:35 +0000 |
commit | a9219b95a2694000bd6a25340a19e8bb04958584 (patch) | |
tree | 82324a352dc8476763cb28ecc4f677ef8463dcad /openwrt/package/base-files/default/etc/init.d/S50dnsmasq | |
parent | 08e080d8163c34953035d39e7e81ff1138f9ebff (diff) |
remove dnsmasq config files from base-files
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1867 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/base-files/default/etc/init.d/S50dnsmasq')
-rwxr-xr-x | openwrt/package/base-files/default/etc/init.d/S50dnsmasq | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/openwrt/package/base-files/default/etc/init.d/S50dnsmasq b/openwrt/package/base-files/default/etc/init.d/S50dnsmasq deleted file mode 100755 index cce957573..000000000 --- a/openwrt/package/base-files/default/etc/init.d/S50dnsmasq +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh -. /etc/functions.sh -. /etc/network.overrides -[ "$FAILSAFE" != "true" -a -e /etc/config/network ] && . /etc/config/network - -# interface to use for DHCP -iface=lan - -ifname=$(nvram get ${iface}_ifname) -ipaddr=$(nvram get ${iface}_ipaddr) -netmask=$(nvram get ${iface}_netmask) - -( - # check for existing DHCP server - udhcpc -n -q -R -s /dev/zero -i $ifname >&- || { - - ipaddr=$(ip2int $ipaddr) - netmask=$(ip2int ${netmask:-255.255.255.0}) - network=$((ipaddr&netmask)) - - start=$(nvram get dhcp_start) - start=$((network+${start:-100})) - end=$(nvram get dhcp_num) - end=$((start+${end:-150})) - - args="-l /tmp/dhcp.leases -K -F $(int2ip $start),$(int2ip $end),$(int2ip $netmask),12h" - } - dnsmasq ${args} -) & |