rename script 'check-lte-firmware-update' -> 'check-lte-firmware-upgrade'

That's the correct wording from commands..
This commit is contained in:
Christian Hesse 2019-01-02 22:35:34 +01:00
parent e2b5124e8c
commit fe04b8b8db
2 changed files with 8 additions and 8 deletions

View file

@ -1,11 +1,11 @@
#!rsc
# RouterOS script: check-lte-firmware-update
# RouterOS script: check-lte-firmware-upgrade
# Copyright (c) 2018-2019 Christian Hesse <mail@eworm.de>
#
# check for LTE firmware update, send notification e-mails
# check for LTE firmware upgrade, send notification e-mails
:global "identity";
:global "sent-lte-firmware-update-notification";
:global "sent-lte-firmware-upgrade-notification";
:global SendNotification;
@ -16,15 +16,15 @@
# strip the extra line break (TODO: remove when fixed upstream)
:set ($firmware->"latest") [ :pick ($firmware->"latest") 0 [ :find ($firmware->"latest") "\n" ] ];
:if ($"sent-lte-firmware-update-notification" = ($firmware->"latest")) do={
:log debug ("Already sent the LTE firmware update notification for version " . \
:if ($"sent-lte-firmware-upgrade-notification" = ($firmware->"latest")) do={
:log debug ("Already sent the LTE firmware upgrade notification for version " . \
($firmware->"latest") . ".");
} else={
:if (($firmware->"installed") != ($firmware->"latest")) do={
$SendNotification ("LTE firmware update notification") \
$SendNotification ("LTE firmware upgrade notification") \
("A new firmware version " . ($firmware->"latest") . " is available for " . \
"LTE interface " . $intname . " on " . $identity . ".");
:set "sent-lte-firmware-update-notification" ($firmware->"latest");
:set "sent-lte-firmware-upgrade-notification" ($firmware->"latest");
}
}
} on-error={

View file

@ -104,6 +104,6 @@
# Do *NOT* change these!
:global "sent-routeros-update-notification" "-";
:global "sent-lte-firmware-update-notification" "-";
:global "sent-lte-firmware-upgrade-notification" "-";
:global "identity" [ / system identity get name ];
/ system script run global-functions;