From f646e7cbe1ac8ab055a0e91e91a9f5fb12a6005a Mon Sep 17 00:00:00 2001
From: Felix Fietkau <nbd@openwrt.org>
Date: Sun, 30 Jul 2006 03:18:50 +0000
Subject: [PATCH] only set dhcp_enable if lan proto is set to static

SVN-Revision: 4324
---
 openwrt/package/dnsmasq/files/dnsmasq.init | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/openwrt/package/dnsmasq/files/dnsmasq.init b/openwrt/package/dnsmasq/files/dnsmasq.init
index 140f727f46..14fc698cff 100644
--- a/openwrt/package/dnsmasq/files/dnsmasq.init
+++ b/openwrt/package/dnsmasq/files/dnsmasq.init
@@ -13,8 +13,9 @@ scan_interfaces
 args=""
 iface=lan
 config_get ifname "$iface" ifname
+config_get proto "$iface" proto
 
-dhcp_enable="${dhcp_enable:-1}"
+[ "$proto" = static ] && dhcp_enable="${dhcp_enable:-1}"
 dhcp_start="${dhcp_start:-100}"
 dhcp_num="${dhcp_num:-50}"
 dhcp_lease="${dhcp_lease:-12h}"
@@ -33,7 +34,7 @@ dhcp_lease="${dhcp_lease:-12h}"
 		eval $(ipcalc $ipaddr $netmask ${dhcp_start:-100} ${dhcp_num:-150})
 		
 		# and pass the args via config parser defines
-		echo "@define dhcp_enable 1"
+		echo "${dhcp_enable:+@define dhcp_enable 1}"
 		echo "@define netmask $NETMASK"
 		echo "@define start $START"
 		echo "@define end $END"
-- 
GitLab