mirror of
https://git.eworm.de/cgit/routeros-scripts
synced 2025-07-06 08:04:28 +02:00
add script 'check-lte-firmware-update'
This commit is contained in:
parent
b8830ee6a5
commit
9346df67d7
2 changed files with 33 additions and 0 deletions
32
check-lte-firmware-update
Normal file
32
check-lte-firmware-update
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
#!rsc
|
||||||
|
# RouterOS script: check-lte-firmware-update
|
||||||
|
# Copyright (c) 2018 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 ];
|
||||||
|
|
||||||
|
: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 . ".");
|
||||||
|
}
|
||||||
|
}
|
|
@ -100,5 +100,6 @@
|
||||||
|
|
||||||
# Do *NOT* change these!
|
# Do *NOT* change these!
|
||||||
:global "sent-routeros-update-notification" "-";
|
:global "sent-routeros-update-notification" "-";
|
||||||
|
:global "sent-lte-firmware-update-notification" "-";
|
||||||
:global "identity" [ / system identity get name ];
|
:global "identity" [ / system identity get name ];
|
||||||
/ system script run global-functions;
|
/ system script run global-functions;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue