dnsmasq: initscript: fix bool options handling, bump release number
SVN-Revision: 22251
This commit is contained in:
parent
628252073e
commit
1d7a6ebc79
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=dnsmasq
|
PKG_NAME:=dnsmasq
|
||||||
PKG_VERSION:=2.55
|
PKG_VERSION:=2.55
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=3
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=http://thekelleys.org.uk/dnsmasq
|
PKG_SOURCE_URL:=http://thekelleys.org.uk/dnsmasq
|
||||||
|
|
|
@ -23,8 +23,8 @@ append_bool() {
|
||||||
local option="$2"
|
local option="$2"
|
||||||
local value="$3"
|
local value="$3"
|
||||||
local _loctmp
|
local _loctmp
|
||||||
config_get_bool _loctmp "$section" "$option"
|
config_get_bool _loctmp "$section" "$option" 0
|
||||||
[ "$_loctmp" -gt 0 ] && append args "$value"
|
[ $_loctmp -gt 0 ] && append args "$value"
|
||||||
}
|
}
|
||||||
|
|
||||||
append_parm() {
|
append_parm() {
|
||||||
|
@ -274,7 +274,7 @@ dhcp_add() {
|
||||||
|
|
||||||
#check for an already active dhcp server on the interface, unless 'force' is set
|
#check for an already active dhcp server on the interface, unless 'force' is set
|
||||||
config_get_bool force "$cfg" force 0
|
config_get_bool force "$cfg" force 0
|
||||||
[ "$force" -gt 0 ] || {
|
[ $force -gt 0 ] || {
|
||||||
udhcpc -n -q -s /bin/true -t 1 -i $ifname >&- && return 0
|
udhcpc -n -q -s /bin/true -t 1 -i $ifname >&- && return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue