From cc9b2620e7674ce86660d2214be16cfa17bb0f15 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Thu, 25 Jul 2019 13:25:12 +0200 Subject: update-tunnelbroker: get values into array --- update-tunnelbroker | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/update-tunnelbroker b/update-tunnelbroker index 4a8c797..c529d44 100644 --- a/update-tunnelbroker +++ b/update-tunnelbroker @@ -19,11 +19,10 @@ :local PublicAddress [ / ip cloud get public-address ]; :foreach Interface in=[ / interface 6to4 find where comment~"^tunnelbroker" !disabled ] do={ - :local IntName [ / interface 6to4 get $Interface name ]; - :local LastAddress [ / interface 6to4 get $Interface local-address ]; + :local InterfaceVal [ / interface 6to4 get $Interface ]; - :if ($PublicAddress != $LastAddress) do={ - :local Comment [ $ParseKeyValueStore [ / interface 6to4 get $Interface comment ] ]; + :if ($PublicAddress != $InterfaceVal->"local-address") do={ + :local Comment [ $ParseKeyValueStore ($InterfaceVal->"comment") ]; $CertificateAvailable "Starfield Secure Certificate Authority - G2"; :log info ("Local address changed, sending UPDATE to tunnelbroker! New address: " . $PublicAddress); @@ -32,6 +31,6 @@ user=($Comment->"user") password=($Comment->"pass") keep-result=no; / interface 6to4 set $Interface local-address=$PublicAddress; } else={ - :log debug ("All tunnelbroker configuration is up to date for interface " . $IntName . "."); + :log debug ("All tunnelbroker configuration is up to date for interface " . $InterfaceVal->"name" . "."); } } -- cgit v1.2.3-54-g00ecf