mirror of
https://github.com/nymurbd/MikroTik-scripts.git
synced 2025-08-03 09:44:58 +02:00
global: give script or function name in log messages
This commit is contained in:
parent
b0e52aa2d1
commit
f46db91845
46 changed files with 262 additions and 212 deletions
|
@ -7,10 +7,11 @@
|
|||
# upgrade CAPs one after another
|
||||
# https://git.eworm.de/cgit/routeros-scripts/about/doc/capsman-rolling-upgrade.md
|
||||
|
||||
:local 0 "capsman-rolling-upgrade";
|
||||
:global GlobalFunctionsReady;
|
||||
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
|
||||
|
||||
:global LogPrintExit;
|
||||
:global LogPrintExit2;
|
||||
:global ScriptLock;
|
||||
|
||||
$ScriptLock "capsman-rolling-upgrade";
|
||||
|
@ -23,7 +24,7 @@ $ScriptLock "capsman-rolling-upgrade";
|
|||
:if ($Delay > 120) do={ :set Delay 120; }
|
||||
:foreach RemoteCap in=[ / caps-man remote-cap find where version!=$InstalledVersion ] do={
|
||||
:local RemoteCapVal [ / caps-man remote-cap get $RemoteCap ];
|
||||
$LogPrintExit info ("Starting upgrade for " . $RemoteCapVal->"name" . \
|
||||
$LogPrintExit2 info $0 ("Starting upgrade for " . $RemoteCapVal->"name" . \
|
||||
" (" . $RemoteCapVal->"identity" . ")...") false;
|
||||
/ caps-man remote-cap upgrade [ find where name=$RemoteCapVal->"name" ];
|
||||
:delay ($Delay . "s");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue