mirror of
https://github.com/eworm-de/routeros-scripts
synced 2024-05-14 08:04:19 +00:00
capsman-rolling-upgrade: use $LogPrintExit
This commit is contained in:
parent
b17ca4bb63
commit
b2d1b64bd2
1 changed files with 3 additions and 2 deletions
|
@ -6,6 +6,7 @@
|
|||
# upgrade CAPs one after another
|
||||
# https://git.eworm.de/cgit/routeros-scripts/about/doc/capsman-rolling-upgrade.md
|
||||
|
||||
:global LogPrintExit;
|
||||
:global ScriptLock;
|
||||
|
||||
$ScriptLock "capsman-rolling-upgrade";
|
||||
|
@ -18,8 +19,8 @@ $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 ];
|
||||
:log info ("Starting upgrade for " . $RemoteCapVal->"name" . \
|
||||
" (" . $RemoteCapVal->"identity" . ")...");
|
||||
$LogPrintExit info ("Starting upgrade for " . $RemoteCapVal->"name" . \
|
||||
" (" . $RemoteCapVal->"identity" . ")...") false;
|
||||
/ caps-man remote-cap upgrade [ find where name=$RemoteCapVal->"name" ];
|
||||
:delay ($Delay . "s");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue