1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-11 03:17:28 +03:00

make dnsmasq init script non-blocking

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1130 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2005-06-01 18:28:51 +00:00
parent 260f1a89a0
commit cd8de049ff

View File

@ -8,8 +8,9 @@ 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 >&- || {
(
# check for existing DHCP server
udhcpc -n -q -R -s /dev/zero -i $ifname >&- || {
ipaddr=$(ip2int $ipaddr)
netmask=$(ip2int ${netmask:-255.255.255.0})
@ -21,5 +22,6 @@ udhcpc -n -q -R -s /dev/zero -i $ifname >&- || {
end=$((start+${end:-150}))
args="-l /tmp/dhcp.leases -K -F $(int2ip $start),$(int2ip $end),$(int2ip $netmask),12h"
}
dnsmasq ${args}
}
dnsmasq ${args}
) &