mirror of
https://github.com/eworm-de/routeros-scripts
synced 2024-05-14 08:04:19 +00:00
34 lines
1.3 KiB
Text
34 lines
1.3 KiB
Text
#!rsc
|
|
# RouterOS script: capsman-download-packages
|
|
# Copyright (c) 2018 Christian Hesse <mail@eworm.de>
|
|
#
|
|
# requires: dont-require-permissions=yes
|
|
#
|
|
# download and cleanup packages for CAP installation from CAPsMAN
|
|
|
|
:global CertificateAvailable;
|
|
|
|
:local "package-path" [ / caps-man manager get package-path ];
|
|
:local "installed-version" [ / system package update get installed-version ];
|
|
:local updated false;
|
|
|
|
:foreach package in=[ / file find where type=package ] do={
|
|
:if ([ / file get $package package-version ] != $"installed-version") 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";
|
|
}
|
|
:local "package-file" ($"package-name" . "-" . $"installed-version" . "-" . $"package-architecture" . ".npk");
|
|
$CertificateAvailable "Let's Encrypt Authority X3" "letsencrypt";
|
|
/ tool fetch mode=https check-certificate=yes-without-crl \
|
|
("https://upgrade.mikrotik.com/routeros/" . $"installed-version" . "/" . $"package-file") \
|
|
dst-path=($"package-path" . "/" . $"package-file");
|
|
:set updated true;
|
|
/ file remove $package;
|
|
}
|
|
}
|
|
|
|
:if ($updated = true && [ / caps-man manager get enabled ] = true) do={
|
|
/ caps-man manager set enabled=yes;
|
|
}
|