projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
replace 'mkdir -p' by 'install -d -m0755'
[openwrt.git]
/
openwrt
/
package
/
dnsmasq
/
files
/
S50dnsmasq
diff --git
a/openwrt/package/dnsmasq/files/S50dnsmasq
b/openwrt/package/dnsmasq/files/S50dnsmasq
index
c970960
..
17e331f
100755
(executable)
--- a/
openwrt/package/dnsmasq/files/S50dnsmasq
+++ b/
openwrt/package/dnsmasq/files/S50dnsmasq
@@
-1,5
+1,7
@@
#!/bin/sh
. /etc/functions.sh
#!/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
# interface to use for DHCP
iface=lan
@@
-23,6
+25,6
@@
udhcpc -n -q -R -s /bin/true -i $ifname >&- || {
wanproto=$(nvram get wan_proto)
[ -z "$wanproto" -o "$wanproto" = "none" ] || wanif=$(nvram get wan_ifname)
wanproto=$(nvram get wan_proto)
[ -z "$wanproto" -o "$wanproto" = "none" ] || wanif=$(nvram get wan_ifname)
- args="-
l /tmp/dhcp.leases -
K -F $(int2ip $start),$(int2ip $end),$(int2ip $netmask),12h ${wanif:+-I ${wanif} }"
+ args="-K -F $(int2ip $start),$(int2ip $end),$(int2ip $netmask),12h ${wanif:+-I ${wanif} }"
}
dnsmasq ${args}
}
dnsmasq ${args}
This page took
0.024256 seconds
and
4
git commands to generate.