diff options
-rw-r--r-- | check-lte-firmware-upgrade (renamed from check-lte-firmware-update) | 14 | ||||
-rw-r--r-- | global-config | 2 |
2 files changed, 8 insertions, 8 deletions
diff --git a/check-lte-firmware-update b/check-lte-firmware-upgrade index a228b93..c99f5d7 100644 --- a/check-lte-firmware-update +++ b/check-lte-firmware-upgrade @@ -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={ diff --git a/global-config b/global-config index cba5e27..6e32e7f 100644 --- a/global-config +++ b/global-config @@ -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; |