diff options
author | Hans Dedecker <dedeckeh@gmail.com> | 2018-06-20 13:21:28 +0200 |
---|---|---|
committer | Hans Dedecker <dedeckeh@gmail.com> | 2018-06-20 14:08:01 +0200 |
commit | eb568e0abac158016c61fae68154722e9d112dfc (patch) | |
tree | f806355c7d1c63071c270ec8f966139578cc7e5b | |
parent | da318f3522344ae3344b94c85dae41eeb53b04cc (diff) | |
download | mtk-20170518-eb568e0abac158016c61fae68154722e9d112dfc.zip mtk-20170518-eb568e0abac158016c61fae68154722e9d112dfc.tar.gz mtk-20170518-eb568e0abac158016c61fae68154722e9d112dfc.tar.bz2 |
dnsmasq: fix dnsmasq startup issue
Commit ecd954d530 installs specific interface triggers which rewrites the dnsmasq config
file and restarts dnsmasq if the network interface becomes active for which a trigger
has been installed.
In case no dhcp sections are specified or ignore is set to 1 dnsmasq will not be started
at startup which breaks DNS resolving.
Fix this by ditching the BOOT check in start_service and always start dnsmasq at startup.
Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
-rw-r--r-- | package/network/services/dnsmasq/Makefile | 2 | ||||
-rw-r--r-- | package/network/services/dnsmasq/files/dnsmasq.init | 8 |
2 files changed, 1 insertions, 9 deletions
diff --git a/package/network/services/dnsmasq/Makefile b/package/network/services/dnsmasq/Makefile index bb68a67..f26f819 100644 --- a/package/network/services/dnsmasq/Makefile +++ b/package/network/services/dnsmasq/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=dnsmasq PKG_VERSION:=2.80test2 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=http://thekelleys.org.uk/dnsmasq/test-releases diff --git a/package/network/services/dnsmasq/files/dnsmasq.init b/package/network/services/dnsmasq/files/dnsmasq.init index 4906df9..bb8d07f 100644 --- a/package/network/services/dnsmasq/files/dnsmasq.init +++ b/package/network/services/dnsmasq/files/dnsmasq.init @@ -1061,18 +1061,10 @@ service_triggers() config_foreach add_interface_trigger dhcp } -boot() -{ - BOOT=1 - start "$@" -} - start_service() { local instance="$1" local instance_found=0 - [ -n "$BOOT" ] && return - . /lib/functions/network.sh config_cb() { |