routeros-scripts/packages-update

31 lines
906 B
Text
Raw Normal View History

2019-02-19 15:41:27 +00:00
#!rsc
# RouterOS script: packages-update
# Copyright (c) 2019 Christian Hesse <mail@eworm.de>
#
# download packages and reboot for installation
:global DownloadPackage;
2019-07-24 08:13:39 +00:00
:local Update [ / system package update get ];
2019-02-19 15:41:27 +00:00
2019-07-24 08:13:39 +00:00
:if ($Update->"installed-version" = $Update->"latest-version") do={
:log info ("Version " . $Update->"latest-version" . " is already installed.");
:error "No updates available.";
2019-02-19 15:41:27 +00:00
}
:foreach Package in=[ / system package find where !bundle ] do={
:local PkgName [ / system package get $Package name ];
2019-07-24 08:13:39 +00:00
if ([ $DownloadPackage $PkgName ($Update->"latest-version") ] = false) do={
:log error ("Download for package " . $PkgName . " failed.");
:error "Error: See log for details.";
2019-02-19 15:41:27 +00:00
}
}
:foreach Script in=[ / system script find where name~"^(email|upload)-backup\$" ] do={
/ system script run $Script;
2019-02-19 15:41:27 +00:00
}
:log info ("Rebooting for update.");
:delay 1s;
/ system reboot;