diff options
author | Christian Hesse <mail@eworm.de> | 2024-05-15 14:15:54 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2024-05-15 15:52:28 +0200 |
commit | ca7a592dfd9f19e07bbabc32d999b604bff0d0c9 (patch) | |
tree | 433837505056b549a6bd2375964a74bf120d3c8d /daily-psk.wifi.rsc | |
parent | 545fb5583aee9e8971749a7eab71b4040cf7847f (diff) |
daily-psk: adopt syntax changesrouteros-7.15beta8-1
RouterOS 7.15beta8 came with this change:
*) wifi - show inherited properties with "print" command (replaces "actual-configuration") and added "print config" for showing only configured values;
While the old code is bad syntax with RouterOS 7.15, the new code is
valid for older RouterOS, but produces different (and more or less
unexpected) results. 🥴
Let's use the new code, and add a check on the RouterOS version.
With old RouterOS this now sends the notification even if the interface
is disabled.
Diffstat (limited to 'daily-psk.wifi.rsc')
-rw-r--r-- | daily-psk.wifi.rsc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/daily-psk.wifi.rsc b/daily-psk.wifi.rsc index 9d7f285..9b938dc 100644 --- a/daily-psk.wifi.rsc +++ b/daily-psk.wifi.rsc @@ -23,6 +23,7 @@ :global FormatLine; :global LogPrint; + :global RequiredRouterOS; :global ScriptLock; :global SendNotification2; :global SymbolForNotification; @@ -71,7 +72,7 @@ $LogPrint info $ScriptName ("Updating daily PSK for " . $Ssid . " to " . $NewPsk . " (was " . $OldPsk . ")"); /interface/wifi/access-list/set $AccList passphrase=$NewPsk; - :if ([ :len [ /interface/wifi/actual-configuration/find where configuration.ssid=$Ssid ] ] > 0) do={ + :if ([ $RequiredRouterOS $ScriptName "7.15beta8" false ] = false || [ :len [ /interface/wifi/find where configuration.ssid=$Ssid !disabled ] ] > 0) do={ :if ($Seen->$Ssid = 1) do={ $LogPrint debug $ScriptName ("Already sent a mail for SSID " . $Ssid . ", skipping."); } else={ |