mirror of
https://github.com/eworm-de/routeros-scripts
synced 2024-05-14 08:04:19 +00:00
82 lines
3.2 KiB
Text
82 lines
3.2 KiB
Text
#!rsc
|
|
# RouterOS script: check-routeros-update
|
|
# Copyright (c) 2013-2019 Christian Hesse <mail@eworm.de>
|
|
#
|
|
# check for RouterOS update, send notification and/or install
|
|
|
|
:global Identity;
|
|
:global SafeUpdateUrl;
|
|
:global SentRouterosUpdateNotification;
|
|
|
|
:global SendNotification;
|
|
|
|
:local DoUpdate do={
|
|
:if ([ / system script print count-only where name="packages-update" ] > 0) do={
|
|
/ system script run packages-update;
|
|
} else={
|
|
/ system package update install without-paging;
|
|
}
|
|
:error "Waiting for system to reboot.";
|
|
}
|
|
|
|
:if ([ / system package print count-only where name="wireless" disabled=no ] > 0) do={
|
|
:if ([ / interface wireless cap get enabled ] = true && \
|
|
[ / caps-man manager get enabled ] = false) do={
|
|
:log warning "System is managed by CAPsMAN, not checking.";
|
|
:error "Warning: See log for details.";
|
|
}
|
|
}
|
|
|
|
/ system package update check-for-updates without-paging;
|
|
:local Update [ / system package update get ];
|
|
|
|
:if ($Update->"installed-version" != $Update->"latest-version") do={
|
|
:local BoardName [ / system resource get board-name ];
|
|
:local Model [ / system routerboard get model ];
|
|
:local SerialNumber [ / system routerboard get serial-number ];
|
|
|
|
:if ([ :len $SafeUpdateUrl ] > 0) do={
|
|
:local Result;
|
|
:do {
|
|
:set Result [ / tool fetch check-certificate=yes-without-crl \
|
|
($SafeUpdateUrl . $Update->"channel" . "?installed=" . $Update->"installed-version" . \
|
|
"&latest=" . $Update->"latest-version") output=user as-value ];
|
|
} on-error={
|
|
:log warning ("Failed receiving safe version for " . $Update->"channel" . ".");
|
|
}
|
|
:if ($Result->"status" = "finished" && $Result->"data" = $Update->"latest-version") do={
|
|
:log info ("Version " . $Update->"latest-version" . " is considered safe, updating...");
|
|
$SendNotification ("RouterOS update") \
|
|
("Version " . $Update->"latest-version" . " is considered safe for " . $Update->"channel" . \
|
|
", updating on " . $Identity . "...");
|
|
$DoUpdate;
|
|
}
|
|
}
|
|
|
|
:if ([ / system script job print count-only where script="check-routeros-update" parent~"." ] > 0) do={
|
|
:put ("Do you want to install RouterOS version " . $Update->"latest-version" . "? [y/N]");
|
|
:if ([ :terminal inkey timeout=60 ] = 121) do={
|
|
$DoUpdate;
|
|
} else={
|
|
:put "Canceled...";
|
|
}
|
|
}
|
|
|
|
:if ($SentRouterosUpdateNotification = $Update->"latest-version") do={
|
|
:log info ("Already sent the RouterOS update notification for version " . \
|
|
$Update->"latest-version" . ".");
|
|
:error "Already sent notification.";
|
|
}
|
|
|
|
$SendNotification ("RouterOS update") \
|
|
("There is a RouterOS update available.\n\n" . \
|
|
"Board name: " . $BoardName . "\n" . \
|
|
"Model: " . $Model . "\n" . \
|
|
"Serial number: " . $SerialNumber . "\n" . \
|
|
"Hostname: " . $Identity . "\n" . \
|
|
"Channel: " . $Update->"channel" . "\n" . \
|
|
"Installed: " . $Update->"installed-version" . "\n" . \
|
|
"Available: " . $Update->"latest-version" . "\n\n" .\
|
|
"https://mikrotik.com/download/changelogs/" . $Update->"channel" . "-release-tree");
|
|
:set SentRouterosUpdateNotification ($Update->"latest-version");
|
|
}
|