Modified the way tunneldigger hosts are configured in UCI.
This commit is contained in:
parent
bd0670c979
commit
4dd8ecf983
@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=tunneldigger
|
||||
PKG_VERSION:=0.2
|
||||
PKG_RELEASE:=1
|
||||
PKG_RELEASE:=2
|
||||
PKG_REV:=HEAD
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||
|
@ -1,8 +1,7 @@
|
||||
config broker
|
||||
option address 'x.y.z.w'
|
||||
list port 8942
|
||||
list port 53
|
||||
list port 123
|
||||
list address 'x.y.z.w:8942'
|
||||
list address 'x.y.z.w:53'
|
||||
list address 'x.y.z.w:123'
|
||||
option uuid 'abcd'
|
||||
option interface 'l2tp0'
|
||||
|
||||
|
@ -9,14 +9,13 @@ config_cb() {
|
||||
|
||||
case "$configname" in
|
||||
broker)
|
||||
config_get address "$cfg" address
|
||||
config_get ports "$cfg" port
|
||||
config_get addresses "$cfg" address
|
||||
config_get uuid "$cfg" uuid
|
||||
config_get interface "$cfg" interface
|
||||
|
||||
local broker_opts=""
|
||||
for port in $ports; do
|
||||
broker_opts="${broker_opts} -b ${address}:${port}"
|
||||
for address in $addresses; do
|
||||
broker_opts="${broker_opts} -b ${address}"
|
||||
done
|
||||
|
||||
/usr/bin/tunneldigger -u ${uuid} -i ${interface} -t ${tunnel_id} ${broker_opts} &
|
||||
|
Loading…
Reference in New Issue
Block a user