make dnsmasq init script non-blocking

SVN-Revision: 1130
lede-17.01
Felix Fietkau 2005-06-01 18:28:51 +00:00
parent 43e5060743
commit 9154e55571
1 changed files with 16 additions and 14 deletions

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}
) &