mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2025-08-05 02:34:45 +02:00
check-routeros-update: do not exit with error
This commit is contained in:
parent
5af8b95444
commit
184a769eeb
1 changed files with 6 additions and 3 deletions
|
@ -53,7 +53,8 @@
|
|||
:local Update [ /system/package/update/get ];
|
||||
|
||||
:if ([ $ScriptFromTerminal $ScriptName ] = true && ($Update->"installed-version") = ($Update->"latest-version")) do={
|
||||
$LogPrintExit2 info $ScriptName ("System is already up to date.") true;
|
||||
$LogPrintExit2 info $ScriptName ("System is already up to date.") false;
|
||||
:return true;
|
||||
}
|
||||
|
||||
:local NumInstalled [ $VersionToNum ($Update->"installed-version") ];
|
||||
|
@ -129,7 +130,8 @@
|
|||
|
||||
:if ($SentRouterosUpdateNotification = $Update->"latest-version") do={
|
||||
$LogPrintExit2 info $ScriptName ("Already sent the RouterOS update notification for version " . \
|
||||
$Update->"latest-version" . ".") true;
|
||||
$Update->"latest-version" . ".") false;
|
||||
:return true;
|
||||
}
|
||||
|
||||
$SendNotification2 ({ origin=$ScriptName; \
|
||||
|
@ -143,7 +145,8 @@
|
|||
:if ($NumInstalled > $NumLatest) do={
|
||||
:if ($SentRouterosUpdateNotification = $Update->"latest-version") do={
|
||||
$LogPrintExit2 info $ScriptName ("Already sent the RouterOS downgrade notification for version " . \
|
||||
$Update->"latest-version" . ".") true;
|
||||
$Update->"latest-version" . ".") false;
|
||||
:return true;
|
||||
}
|
||||
|
||||
$SendNotification2 ({ origin=$ScriptName; \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue