mirror of
https://git.eworm.de/cgit/routeros-scripts
synced 2025-08-04 02:04:56 +02:00
rename script 'check-lte-firmware-update' -> 'check-lte-firmware-upgrade'
That's the correct wording from commands..
This commit is contained in:
parent
e2b5124e8c
commit
fe04b8b8db
2 changed files with 8 additions and 8 deletions
34
check-lte-firmware-upgrade
Normal file
34
check-lte-firmware-upgrade
Normal file
|
@ -0,0 +1,34 @@
|
|||
#!rsc
|
||||
# RouterOS script: check-lte-firmware-upgrade
|
||||
# Copyright (c) 2018-2019 Christian Hesse <mail@eworm.de>
|
||||
#
|
||||
# check for LTE firmware upgrade, send notification e-mails
|
||||
|
||||
:global "identity";
|
||||
:global "sent-lte-firmware-upgrade-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-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 upgrade notification") \
|
||||
("A new firmware version " . ($firmware->"latest") . " is available for " . \
|
||||
"LTE interface " . $intname . " on " . $identity . ".");
|
||||
:set "sent-lte-firmware-upgrade-notification" ($firmware->"latest");
|
||||
}
|
||||
}
|
||||
} on-error={
|
||||
:log debug ("Could not get latest LTE firmware version for interface " . \
|
||||
$intname . ".");
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue