aboutsummaryrefslogtreecommitdiffstats
path: root/collect-wireless-mac.local
diff options
context:
space:
mode:
Diffstat (limited to 'collect-wireless-mac.local')
-rw-r--r--collect-wireless-mac.local6
1 files changed, 2 insertions, 4 deletions
diff --git a/collect-wireless-mac.local b/collect-wireless-mac.local
index 109ec5c..6c07044 100644
--- a/collect-wireless-mac.local
+++ b/collect-wireless-mac.local
@@ -16,6 +16,7 @@
:global Identity;
+:global EitherOr;
:global GetMacVendor;
:global LogPrintExit2;
:global ScriptLock;
@@ -51,10 +52,7 @@ $ScriptLock $0 false 10;
:local Lease ([ / ip dhcp-server lease find where mac-address=($RegVal->"mac-address") dynamic=yes status=bound ]->0);
:if ([ :len $Lease ] > 0) do={
:set Address [ / ip dhcp-server lease get $Lease address ];
- :set HostName [ / ip dhcp-server lease get $Lease host-name ];
- :if ([ :len $HostName ] = 0) do={
- :set HostName "no hostname";
- }
+ :set HostName [ $EitherOr [ / ip dhcp-server lease get $Lease host-name ] "no hostname" ];
:set DnsName "no dns name";
:local DnsRec ([ / ip dns static find where address=$Address ]->0);
:if ([ :len $DnsRec ] > 0) do={