sms-forward: drop main function, use :do with on-error

This commit is contained in:
Christian Hesse 2024-03-06 15:28:55 +01:00
parent e19a48682e
commit ac38e16944

View file

@ -12,8 +12,8 @@
:global GlobalFunctionsReady; :global GlobalFunctionsReady;
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; } :while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
:local Main do={ :do {
:local ScriptName [ :tostr $1 ]; :local ScriptName [ :jobname ];
:global Identity; :global Identity;
:global SmsForwardHooks; :global SmsForwardHooks;
@ -28,7 +28,7 @@
:global WaitFullyConnected; :global WaitFullyConnected;
:if ([ $ScriptLock $ScriptName ] = false) do={ :if ([ $ScriptLock $ScriptName ] = false) do={
:return false; :error false;
} }
:if ([ /tool/sms/get receive-enabled ] = false) do={ :if ([ /tool/sms/get receive-enabled ] = false) do={
@ -41,7 +41,7 @@
:if ([ /interface/lte/get ($Settings->"port") running ] != true) do={ :if ([ /interface/lte/get ($Settings->"port") running ] != true) do={
$LogPrintExit2 info $ScriptName ("The LTE interface is not in running state, skipping.") false; $LogPrintExit2 info $ScriptName ("The LTE interface is not in running state, skipping.") false;
:return true; :error true;
} }
# forward SMS in a loop # forward SMS in a loop
@ -95,6 +95,4 @@
} }
} }
} }
} } on-error={ }
$Main [ :jobname ];