diff options
author | Christian Hesse <mail@eworm.de> | 2019-01-02 22:35:34 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2019-01-02 22:50:23 +0100 |
commit | fe04b8b8db3040d739e9151207dfcf75de1852af (patch) | |
tree | 4b6f76aade137aed8c4c32fee40be9034fb3ec49 /check-lte-firmware-update | |
parent | e2b5124e8c049f9df16a4a2c9a02f683a490548c (diff) |
rename script 'check-lte-firmware-update' -> 'check-lte-firmware-upgrade'
That's the correct wording from commands..
Diffstat (limited to 'check-lte-firmware-update')
-rw-r--r-- | check-lte-firmware-update | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/check-lte-firmware-update b/check-lte-firmware-update deleted file mode 100644 index a228b93..0000000 --- a/check-lte-firmware-update +++ /dev/null @@ -1,34 +0,0 @@ -#!rsc -# RouterOS script: check-lte-firmware-update -# Copyright (c) 2018-2019 Christian Hesse <mail@eworm.de> -# -# check for LTE firmware update, send notification e-mails - -:global "identity"; -:global "sent-lte-firmware-update-notification"; - -:global SendNotification; - -:foreach interface in=[ / interface lte find ] do={ - :local intname [ / interface lte get $interface name ]; - :do { - :local firmware [ / interface lte firmware-upgrade $interface once as-value ]; - # 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 " . \ - ($firmware->"latest") . "."); - } else={ - :if (($firmware->"installed") != ($firmware->"latest")) do={ - $SendNotification ("LTE firmware update notification") \ - ("A new firmware version " . ($firmware->"latest") . " is available for " . \ - "LTE interface " . $intname . " on " . $identity . "."); - :set "sent-lte-firmware-update-notification" ($firmware->"latest"); - } - } - } on-error={ - :log debug ("Could not get latest LTE firmware version for interface " . \ - $intname . "."); - } -} |