mirror of
https://git.eworm.de/cgit/routeros-scripts
synced 2025-08-09 04:36:06 +02:00
check-lte-firmware-upgrade: move code into function
This commit is contained in:
parent
80180b432d
commit
450ea2fa48
1 changed files with 74 additions and 69 deletions
|
@ -8,15 +8,17 @@
|
||||||
# check for LTE firmware upgrade, send notification
|
# check for LTE firmware upgrade, send notification
|
||||||
# https://git.eworm.de/cgit/routeros-scripts/about/doc/check-lte-firmware-upgrade.md
|
# https://git.eworm.de/cgit/routeros-scripts/about/doc/check-lte-firmware-upgrade.md
|
||||||
|
|
||||||
:local 0 [ :jobname ];
|
|
||||||
:global GlobalFunctionsReady;
|
:global GlobalFunctionsReady;
|
||||||
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
|
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
|
||||||
|
|
||||||
|
:local Main do={
|
||||||
|
:local ScriptName [ :tostr $1 ];
|
||||||
|
|
||||||
:global SentLteFirmwareUpgradeNotification;
|
:global SentLteFirmwareUpgradeNotification;
|
||||||
|
|
||||||
:global ScriptLock;
|
:global ScriptLock;
|
||||||
|
|
||||||
$ScriptLock $0;
|
$ScriptLock $ScriptName;
|
||||||
|
|
||||||
:if ([ :typeof $SentLteFirmwareUpgradeNotification ] != "array") do={
|
:if ([ :typeof $SentLteFirmwareUpgradeNotification ] != "array") do={
|
||||||
:global SentLteFirmwareUpgradeNotification ({});
|
:global SentLteFirmwareUpgradeNotification ({});
|
||||||
|
@ -43,19 +45,19 @@ $ScriptLock $0;
|
||||||
:set Firmware [ /interface/lte/firmware-upgrade $Interface once as-value ];
|
:set Firmware [ /interface/lte/firmware-upgrade $Interface once as-value ];
|
||||||
:set Info [ /interface/lte/monitor $Interface once as-value ];
|
:set Info [ /interface/lte/monitor $Interface once as-value ];
|
||||||
} on-error={
|
} on-error={
|
||||||
$LogPrintExit2 debug $0 ("Could not get latest LTE firmware version for interface " . \
|
$LogPrintExit2 debug $ScriptName ("Could not get latest LTE firmware version for interface " . \
|
||||||
$IntName . ".") false;
|
$IntName . ".") false;
|
||||||
:return false;
|
:return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
:if ([ :len ($Firmware->"latest") ] = 0) do={
|
:if ([ :len ($Firmware->"latest") ] = 0) do={
|
||||||
$LogPrintExit2 info $0 ("An empty string is not a valid version.") false;
|
$LogPrintExit2 info $ScriptName ("An empty string is not a valid version.") false;
|
||||||
:return false;
|
:return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
:if (($Firmware->"installed") = ($Firmware->"latest")) do={
|
:if (($Firmware->"installed") = ($Firmware->"latest")) do={
|
||||||
:if ([ $ScriptFromTerminal $ScriptName ] = true) do={
|
:if ([ $ScriptFromTerminal $ScriptName ] = true) do={
|
||||||
$LogPrintExit2 info $0 ("No firmware upgrade available for LTE interface " . $IntName . ".") false;
|
$LogPrintExit2 info $ScriptName ("No firmware upgrade available for LTE interface " . $IntName . ".") false;
|
||||||
}
|
}
|
||||||
:return true;
|
:return true;
|
||||||
}
|
}
|
||||||
|
@ -65,7 +67,7 @@ $ScriptLock $0;
|
||||||
:put ("Do you want to start unattended lte firmware upgrade for interface " . $IntName . "? [y/N]");
|
:put ("Do you want to start unattended lte firmware upgrade for interface " . $IntName . "? [y/N]");
|
||||||
:if (([ /terminal/inkey timeout=60 ] % 32) = 25) do={
|
:if (([ /terminal/inkey timeout=60 ] % 32) = 25) do={
|
||||||
/system/script/run unattended-lte-firmware-upgrade;
|
/system/script/run unattended-lte-firmware-upgrade;
|
||||||
$LogPrintExit2 info $0 ("Scheduled lte firmware upgrade for interface " . $IntName . "...") false;
|
$LogPrintExit2 info $ScriptName ("Scheduled lte firmware upgrade for interface " . $IntName . "...") false;
|
||||||
:return true;
|
:return true;
|
||||||
} else={
|
} else={
|
||||||
:put "Canceled...";
|
:put "Canceled...";
|
||||||
|
@ -73,14 +75,14 @@ $ScriptLock $0;
|
||||||
}
|
}
|
||||||
|
|
||||||
:if (($SentLteFirmwareUpgradeNotification->$IntName) = ($Firmware->"latest")) do={
|
:if (($SentLteFirmwareUpgradeNotification->$IntName) = ($Firmware->"latest")) do={
|
||||||
$LogPrintExit2 debug $0 ("Already sent the LTE firmware upgrade notification for version " . \
|
$LogPrintExit2 debug $ScriptName ("Already sent the LTE firmware upgrade notification for version " . \
|
||||||
($Firmware->"latest") . ".") false;
|
($Firmware->"latest") . ".") false;
|
||||||
:return false;
|
:return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
$LogPrintExit2 info $0 ("A new firmware version " . ($Firmware->"latest") . " is available for " . \
|
$LogPrintExit2 info $ScriptName ("A new firmware version " . ($Firmware->"latest") . " is available for " . \
|
||||||
"LTE interface " . $IntName . ".") false;
|
"LTE interface " . $IntName . ".") false;
|
||||||
$SendNotification2 ({ origin=$0; \
|
$SendNotification2 ({ origin=$ScriptName; \
|
||||||
subject=([ $SymbolForNotification "sparkles" ] . "LTE firmware upgrade"); \
|
subject=([ $SymbolForNotification "sparkles" ] . "LTE firmware upgrade"); \
|
||||||
message=("A new firmware version " . ($Firmware->"latest") . " is available for " . \
|
message=("A new firmware version " . ($Firmware->"latest") . " is available for " . \
|
||||||
"LTE interface " . $IntName . " on " . $Identity . ".\n\n" . \
|
"LTE interface " . $IntName . " on " . $Identity . ".\n\n" . \
|
||||||
|
@ -94,5 +96,8 @@ $ScriptLock $0;
|
||||||
}
|
}
|
||||||
|
|
||||||
:foreach Interface in=[ /interface/lte/find ] do={
|
:foreach Interface in=[ /interface/lte/find ] do={
|
||||||
$CheckInterface $0 $Interface;
|
$CheckInterface $ScriptName $Interface;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$Main [ :jobname ];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue