aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2022-01-17 20:50:52 +0100
committerGravatar Christian Hesse <mail@eworm.de>2022-01-17 20:50:52 +0100
commit1e6931c8e34d5035cb07baa98b57eccbcd4278ab (patch)
treeba999155ca611d965687809f853e0d57b5534c3a
parent51cd11c80380eac0bfde4649cb30747c198881b7 (diff)
global-functions: $DownloadPackage: handle special case with name
For RouterOS 6.x bundled package version and architecture are swapped. Closes: #21
-rw-r--r--global-functions4
1 files changed, 4 insertions, 0 deletions
diff --git a/global-functions b/global-functions
index 17aa56d..7646aea 100644
--- a/global-functions
+++ b/global-functions
@@ -252,6 +252,7 @@
:global CleanFilePath;
:global LogPrintExit2;
:global MkDir;
+ :global VersionToNum;
:global WaitForFile;
:if ([ :len $PkgName ] = 0) do={ :return false; }
@@ -259,6 +260,9 @@
:if ([ :len $PkgArch ] = 0) do={ :set PkgArch [ / system resource get architecture-name ]; }
:local PkgFile ($PkgName . "-" . $PkgVer . "-" . $PkgArch . ".npk");
+ :if ([ $VersionToNum $PkgVer ] < [ $VersionToNum "7.0" ] && $PkgName = "routeros") do={
+ :set PkgFile ($PkgName . "-" . $PkgArch . "-" . $PkgVer . ".npk");
+ }
:if ($PkgArch = "x86_64" || $PkgName ~ "^routeros-") do={
:set PkgFile ($PkgName . "-" . $PkgVer . ".npk");
}