2018-12-27 00:51:43 +00:00
|
|
|
#!rsc
|
|
|
|
# RouterOS script: capsman-download-packages
|
|
|
|
# Copyright (c) 2018 Christian Hesse <mail@eworm.de>
|
2018-12-27 11:55:21 +00:00
|
|
|
# Michael Gisbers <michael@gisbers.de>
|
2018-12-27 00:51:43 +00:00
|
|
|
#
|
|
|
|
# requires: dont-require-permissions=yes
|
|
|
|
#
|
|
|
|
# download and cleanup packages for CAP installation from CAPsMAN
|
|
|
|
|
2018-12-28 18:30:15 +00:00
|
|
|
:global DownloadPackage;
|
2018-12-27 00:51:43 +00:00
|
|
|
|
|
|
|
:local "package-path" [ / caps-man manager get package-path ];
|
2018-12-27 20:40:12 +00:00
|
|
|
:if ([ :pick $"package-path" 0 ] = "/") do={
|
|
|
|
:set "package-path" [ :pick $"package-path" 1 [ :len $"package-path" ] ];
|
|
|
|
}
|
2018-12-27 00:51:43 +00:00
|
|
|
:local "installed-version" [ / system package update get installed-version ];
|
|
|
|
:local updated false;
|
|
|
|
|
2018-12-28 17:50:22 +00:00
|
|
|
:foreach package in=[ / file find where type=package \
|
|
|
|
package-version!=$"installed-version" name~("^" . $"package-path") ] do={
|
|
|
|
:local "package-name" [ / file get $package package-name ];
|
|
|
|
:local "package-architecture" [ / file get $package package-architecture ];
|
|
|
|
:if ($"package-architecture" = "mips") do={
|
|
|
|
:set "package-architecture" "mipsbe";
|
2018-12-27 00:51:43 +00:00
|
|
|
}
|
2018-12-28 17:50:22 +00:00
|
|
|
:if ($"package-name" = "wireless@") do={
|
|
|
|
:set "package-name" "wireless";
|
|
|
|
}
|
2018-12-28 18:30:15 +00:00
|
|
|
:if ([ $DownloadPackage $"package-name" $"installed-version" $"package-architecture" $"package-path" ] = true) do={
|
|
|
|
:set updated true;
|
|
|
|
/ file remove $package;
|
|
|
|
}
|
2018-12-27 00:51:43 +00:00
|
|
|
}
|
|
|
|
|
2018-12-27 20:36:31 +00:00
|
|
|
:if ($updated = true) do={
|
|
|
|
/ caps-man remote-cap remove [ find where version!=$"installed-version" ];
|
2018-12-27 00:51:43 +00:00
|
|
|
}
|