mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2025-06-20 17:15:48 +02:00
(Though we keep the quoting for type.)
Well, turned out this functionality is for `/file/print` only,
but does not work with `/file/find`. 🫣🥴
This reverts commit 15fd522d3d
.
95 lines
3.2 KiB
Text
95 lines
3.2 KiB
Text
#!rsc by RouterOS
|
|
# RouterOS script: capsman-download-packages.wifi
|
|
# Copyright (c) 2018-2025 Christian Hesse <mail@eworm.de>
|
|
# Michael Gisbers <michael@gisbers.de>
|
|
# https://rsc.eworm.de/COPYING.md
|
|
#
|
|
# requires RouterOS, version=7.15
|
|
#
|
|
# download and cleanup packages for CAP installation from CAPsMAN
|
|
# https://rsc.eworm.de/doc/capsman-download-packages.md
|
|
#
|
|
# !! Do not edit this file, it is generated from template!
|
|
|
|
:local ExitOK false;
|
|
:onerror Err {
|
|
:global GlobalConfigReady; :global GlobalFunctionsReady;
|
|
:retry { :if ($GlobalConfigReady != true || $GlobalFunctionsReady != true) \
|
|
do={ :error ("Global config and/or functions not ready."); }; } delay=500ms max=50;
|
|
:local ScriptName [ :jobname ];
|
|
|
|
:global CleanFilePath;
|
|
:global DownloadPackage;
|
|
:global FileGet;
|
|
:global LogPrint;
|
|
:global MkDir;
|
|
:global RmFile;
|
|
:global ScriptLock;
|
|
:global WaitFullyConnected;
|
|
|
|
:if ([ $ScriptLock $ScriptName ] = false) do={
|
|
:set ExitOK true;
|
|
:error false;
|
|
}
|
|
$WaitFullyConnected;
|
|
|
|
:local PackagePath [ $CleanFilePath [ /interface/wifi/capsman/get package-path ] ];
|
|
:local InstalledVersion [ /system/package/update/get installed-version ];
|
|
:local Updated false;
|
|
|
|
:if ([ :len $PackagePath ] = 0) do={
|
|
$LogPrint warning $ScriptName ("The CAPsMAN package path is not defined, can not download packages.");
|
|
:set ExitOK true;
|
|
:error false;
|
|
}
|
|
|
|
:if ([ $FileGet $PackagePath ] = false) do={
|
|
:if ([ $MkDir $PackagePath ] = false) do={
|
|
$LogPrint warning $ScriptName ("Creating directory at CAPsMAN package path (" . \
|
|
$PackagePath . ") failed!");
|
|
:set ExitOK true;
|
|
:error false;
|
|
}
|
|
$LogPrint info $ScriptName ("Created directory at CAPsMAN package path (" . $PackagePath . \
|
|
"). Please place your packages!");
|
|
}
|
|
|
|
:foreach Package in=[ /file/find where type="package" \
|
|
package-version!=$InstalledVersion name~("^" . $PackagePath) ] do={
|
|
:local File [ /file/get $Package ];
|
|
:if ($File->"package-architecture" = "mips") do={
|
|
:set ($File->"package-architecture") "mipsbe";
|
|
}
|
|
:if ([ $DownloadPackage ($File->"package-name") $InstalledVersion \
|
|
($File->"package-architecture") $PackagePath ] = true) do={
|
|
:set Updated true;
|
|
$RmFile ($File->"name");
|
|
}
|
|
}
|
|
|
|
:if ([ :len [ /file/find where type="package" name~("^" . $PackagePath) ] ] = 0) do={
|
|
$LogPrint info $ScriptName ("No packages available, downloading default set.");
|
|
:foreach Arch in={ "arm"; "arm64" } do={
|
|
:local Packages { "arm"={ "routeros"; "wifi-qcom"; "wifi-qcom-ac" };
|
|
"arm64"={ "routeros"; "wifi-qcom" } };
|
|
:foreach Package in=($Packages->$Arch) do={
|
|
:if ([ $DownloadPackage $Package $InstalledVersion $Arch $PackagePath ] = true) do={
|
|
:set Updated true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
:if ($Updated = true) do={
|
|
:local Scripts [ /system/script/find where source~"\n# provides: capsman-rolling-upgrade.wifi\r?\n" ];
|
|
:if ([ :len $Scripts ] > 0) do={
|
|
:foreach Script in=$Scripts do={
|
|
/system/script/run $Script;
|
|
}
|
|
} else={
|
|
/interface/wifi/capsman/remote-cap/upgrade [ find where version!=$InstalledVersion ];
|
|
}
|
|
}
|
|
} do={
|
|
:global ExitError; $ExitError $ExitOK [ :jobname ] $Err;
|
|
}
|