mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2024-05-11 05:55:19 +00:00
sms-action: drop main function, use :do with on-error
This commit is contained in:
@@ -11,16 +11,17 @@
|
||||
:global GlobalFunctionsReady;
|
||||
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
|
||||
|
||||
:local Main do={
|
||||
:local ScriptName [ :tostr $1 ];
|
||||
:local Action [ :tostr $2 ];
|
||||
:do {
|
||||
:local ScriptName [ :jobname ];
|
||||
|
||||
:global SmsAction;
|
||||
|
||||
:global LogPrintExit2;
|
||||
:global ValidateSyntax;
|
||||
|
||||
:if ([ :len $Action ] = 0) do={
|
||||
:local Action $action;
|
||||
|
||||
:if ([ :typeof $Action ] = "nothing") do={
|
||||
$LogPrintExit2 error $ScriptName ("This script is supposed to run from SMS hook with action=...") true;
|
||||
}
|
||||
|
||||
@@ -32,6 +33,4 @@
|
||||
} else={
|
||||
$LogPrintExit2 warning $ScriptName ("The code for action '" . $Action . "' failed syntax validation!") false;
|
||||
}
|
||||
}
|
||||
|
||||
$Main [ :jobname ] $action;
|
||||
} on-error={ }
|
||||
|
Reference in New Issue
Block a user