diff options
author | Christian Hesse <mail@eworm.de> | 2021-08-26 11:08:55 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2021-08-26 11:12:39 +0200 |
commit | d556e97a465b27fad7aa1cec6be48b7867b401c6 (patch) | |
tree | 415ad3674a37114d1c8ff6a080a2981c9f7a7f6c /dhcp-to-dns | |
parent | 772e66b6226f5f9a345bbef29a7453380b693ea1 (diff) |
dhcp-to-dns: check for existence of address
Chances are that $LeaseVal is an array with just an id - no idea why this
happens. So do not check for array but existence of address.
Diffstat (limited to 'dhcp-to-dns')
-rw-r--r-- | dhcp-to-dns | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dhcp-to-dns b/dhcp-to-dns index 8afbf54..3d01ff8 100644 --- a/dhcp-to-dns +++ b/dhcp-to-dns @@ -58,7 +58,7 @@ $ScriptLock $0 false 10; $LogPrintExit2 debug $0 ("A lease just vanished, ignoring.") false; } - :if ([ :typeof $LeaseVal ] = "array") do={ + :if ([ :len ($LeaseVal->"address") ] > 0) do={ :local Comment ($CommentPrefix . $LeaseVal->"mac-address"); :local HostName [ $IfThenElse ([ :len ($LeaseVal->"host-name") ] = 0) \ [ $CharacterReplace ($LeaseVal->"mac-address") ":" "-" ] \ @@ -91,5 +91,7 @@ $ScriptLock $0 false 10; $LogPrintExit2 info $0 ("Adding new DNS entry for " . $Fqdn . ", address is " . $LeaseVal->"address" . ".") false; / ip dns static add name=$Fqdn address=($LeaseVal->"address") ttl=$Ttl comment=$Comment place-before=$PlaceBefore; } + } else={ + $LogPrintExit2 debug $0 ("No address available... Ignoring.") false; } } |