mirror of
https://git.eworm.de/cgit/routeros-scripts
synced 2025-08-05 10:44:55 +02:00
daily-psk: use $LogPrintExit
This commit is contained in:
parent
1dbd91f76d
commit
3127800496
3 changed files with 11 additions and 8 deletions
|
@ -7,9 +7,10 @@
|
|||
#
|
||||
# !! Do not edit this file, it is generated from template!
|
||||
|
||||
:global Identity;
|
||||
:global DailyPskMatchComment;
|
||||
:global Identity;
|
||||
|
||||
:global LogPrintExit;
|
||||
:global SendNotification;
|
||||
:global UrlEncode;
|
||||
:global WaitForFile;
|
||||
|
@ -56,13 +57,13 @@
|
|||
:local Skip 0;
|
||||
|
||||
:if ($NewPsk != $OldPsk) do={
|
||||
:log info ("Updating daily PSK for " . $Ssid . " to " . $NewPsk . " (was " . $OldPsk . ")");
|
||||
$LogPrintExit info ("Updating daily PSK for " . $Ssid . " to " . $NewPsk . " (was " . $OldPsk . ")") false;
|
||||
/ caps-man access-list set $AccList private-passphrase=$NewPsk;
|
||||
|
||||
:if ([ / caps-man interface print count-only where configuration=$Configuration ] > 0) do={
|
||||
:foreach SeenSsid in=$Seen do={
|
||||
:if ($SeenSsid = $Ssid) do={
|
||||
:log debug ("Already sent a mail for SSID " . $Ssid . ", skipping.");
|
||||
$LogPrintExit debug ("Already sent a mail for SSID " . $Ssid . ", skipping.") false;
|
||||
:set Skip 1;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue