From 9867ee89fab8e5995769052b09e4a7e30f00801b Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Thu, 30 Mar 2006 10:14:26 +0000 Subject: [PATCH] Add support for default lease time in nvram SVN-Revision: 3555 --- openwrt/package/dnsmasq/files/S50dnsmasq | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openwrt/package/dnsmasq/files/S50dnsmasq b/openwrt/package/dnsmasq/files/S50dnsmasq index 7af2a907f8..1c47011d05 100755 --- a/openwrt/package/dnsmasq/files/S50dnsmasq +++ b/openwrt/package/dnsmasq/files/S50dnsmasq @@ -19,10 +19,11 @@ udhcpc -n -q -R -s /bin/true -i $ifname >&- || { num=$(nvram get dhcp_num) eval $(ipcalc $ipaddr $netmask ${start:-100} ${num:-150}) + lease=$(nvram get dhcp_lease) # and pass the args via the commandline # (because trying to edit the config from here is crazy) - args="-K -F $START,$END,$NETMASK,12h" + args="-K -F $START,$END,$NETMASK,${lease:-12h}" } # ignore requests from wan interface -- 2.30.2