2023-08-07 11:11:14 +00:00
|
|
|
#!rsc by RouterOS
|
|
|
|
# RouterOS script: capsman-rolling-upgrade%TEMPL%
|
2024-01-01 14:25:25 +00:00
|
|
|
# Copyright (c) 2018-2024 Christian Hesse <mail@eworm.de>
|
2023-08-07 11:11:14 +00:00
|
|
|
# Michael Gisbers <michael@gisbers.de>
|
|
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
|
|
|
|
#
|
|
|
|
# provides: capsman-rolling-upgrade
|
2024-04-04 19:45:02 +00:00
|
|
|
# requires RouterOS, version=7.13
|
2023-08-07 11:11:14 +00:00
|
|
|
#
|
|
|
|
# upgrade CAPs one after another
|
|
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/doc/capsman-rolling-upgrade.md
|
|
|
|
#
|
2023-11-14 16:31:42 +00:00
|
|
|
# !! This is just a template to generate the real script!
|
|
|
|
# !! Pattern '%TEMPL%' is replaced, paths are filtered.
|
2023-08-07 11:11:14 +00:00
|
|
|
|
|
|
|
:global GlobalFunctionsReady;
|
|
|
|
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
|
|
|
|
|
2024-03-06 14:28:55 +00:00
|
|
|
:do {
|
|
|
|
:local ScriptName [ :jobname ];
|
2023-08-07 11:11:14 +00:00
|
|
|
|
2024-03-08 11:45:37 +00:00
|
|
|
:global LogPrint;
|
2024-03-04 12:48:00 +00:00
|
|
|
:global ScriptLock;
|
2023-08-07 11:11:14 +00:00
|
|
|
|
2024-03-05 15:12:36 +00:00
|
|
|
:if ([ $ScriptLock $ScriptName ] = false) do={
|
2024-03-06 14:28:55 +00:00
|
|
|
:error false;
|
2024-03-05 15:12:36 +00:00
|
|
|
}
|
2023-08-07 11:11:14 +00:00
|
|
|
|
2024-03-04 12:48:00 +00:00
|
|
|
:local InstalledVersion [ /system/package/update/get installed-version ];
|
|
|
|
|
|
|
|
:local RemoteCapCount [ :len [ /caps-man/remote-cap/find ] ];
|
|
|
|
:local RemoteCapCount [ :len [ /interface/wifi/capsman/remote-cap/find ] ];
|
|
|
|
:if ($RemoteCapCount > 0) do={
|
|
|
|
:local Delay (600 / $RemoteCapCount);
|
|
|
|
:if ($Delay > 120) do={ :set Delay 120; }
|
|
|
|
:foreach RemoteCap in=[ /caps-man/remote-cap/find where version!=$InstalledVersion ] do={
|
|
|
|
:foreach RemoteCap in=[ /interface/wifi/capsman/remote-cap/find where version!=$InstalledVersion ] do={
|
|
|
|
:local RemoteCapVal [ /caps-man/remote-cap/get $RemoteCap ];
|
|
|
|
:local RemoteCapVal [ /interface/wifi/capsman/remote-cap/get $RemoteCap ];
|
|
|
|
:if ([ :len $RemoteCapVal ] > 1) do={
|
2023-11-14 09:10:56 +00:00
|
|
|
# NOT /caps-man/ #
|
2024-03-04 12:48:00 +00:00
|
|
|
:set ($RemoteCapVal->"name") ($RemoteCapVal->"common-name");
|
2023-11-14 09:10:56 +00:00
|
|
|
# NOT /caps-man/ #
|
2024-03-08 11:45:37 +00:00
|
|
|
$LogPrint info $ScriptName ("Starting upgrade for " . $RemoteCapVal->"name" . \
|
|
|
|
" (" . $RemoteCapVal->"identity" . ")...");
|
2024-03-04 12:48:00 +00:00
|
|
|
/caps-man/remote-cap/upgrade $RemoteCap;
|
|
|
|
/interface/wifi/capsman/remote-cap/upgrade $RemoteCap;
|
|
|
|
} else={
|
2024-03-08 11:45:37 +00:00
|
|
|
$LogPrint warning $ScriptName ("Remote CAP vanished, skipping upgrade.");
|
2024-03-04 12:48:00 +00:00
|
|
|
}
|
|
|
|
:delay ($Delay . "s");
|
2023-08-07 11:11:14 +00:00
|
|
|
}
|
|
|
|
}
|
2024-03-06 14:28:55 +00:00
|
|
|
} on-error={ }
|