dnsmasq: improve init script portability (FS#1446)
Improve portability of init script by declaring resolvfile as local in dnsmasq_stop function. Fixes resolvfile being set for older busybox versions in dnsmasq_start in a multi dnsmasq instance config when doing restart; this happens when the last instance has a resolvfile configured while the first instance being started has noresolv set to 1. Base on a patch by "Phil" Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
This commit is contained in:
parent
8e1065d681
commit
287f5ebd2f
2 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=dnsmasq
|
PKG_NAME:=dnsmasq
|
||||||
PKG_VERSION:=2.79
|
PKG_VERSION:=2.79
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
||||||
PKG_SOURCE_URL:=http://thekelleys.org.uk/dnsmasq/
|
PKG_SOURCE_URL:=http://thekelleys.org.uk/dnsmasq/
|
||||||
|
|
|
@ -1027,7 +1027,7 @@ dnsmasq_start()
|
||||||
|
|
||||||
dnsmasq_stop()
|
dnsmasq_stop()
|
||||||
{
|
{
|
||||||
local cfg="$1"
|
local cfg="$1" resolvfile
|
||||||
|
|
||||||
config_get resolvfile "$cfg" "resolvfile"
|
config_get resolvfile "$cfg" "resolvfile"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue