aboutsummaryrefslogtreecommitdiffstats
path: root/daily-psk.wifi.rsc
diff options
context:
space:
mode:
Diffstat (limited to 'daily-psk.wifi.rsc')
-rw-r--r--daily-psk.wifi.rsc11
1 files changed, 6 insertions, 5 deletions
diff --git a/daily-psk.wifi.rsc b/daily-psk.wifi.rsc
index 9d7f285..c1f7133 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;
@@ -68,10 +69,10 @@
:local Skip 0;
:if ($NewPsk != $OldPsk) do={
- $LogPrint info $ScriptName ("Updating daily PSK for " . $Ssid . " to " . $NewPsk . " (was " . $OldPsk . ")");
+ $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={
@@ -80,9 +81,9 @@
$SendNotification2 ({ origin=$ScriptName; \
subject=([ $SymbolForNotification "calendar" ] . "daily PSK " . $Ssid); \
message=("This is the daily PSK on " . $Identity . ":\n\n" . \
- [ $FormatLine "SSID" $Ssid ] . "\n" . \
- [ $FormatLine "PSK" $NewPsk ] . "\n" . \
- [ $FormatLine "Date" $Date ] . "\n\n" . \
+ [ $FormatLine "SSID" $Ssid 8 ] . "\n" . \
+ [ $FormatLine "PSK" $NewPsk 8 ] . "\n" . \
+ [ $FormatLine "Date" $Date 8 ] . "\n\n" . \
"A client device specific rule must not exist!"); link=$Link });
:set ($Seen->$Ssid) 1;
}