mirror of
https://github.com/eworm-de/routeros-scripts
synced 2024-05-14 08:04:19 +00:00
sms-action: drop main function, use :do with on-error
This commit is contained in:
parent
1db1a943e2
commit
e19a48682e
1 changed files with 6 additions and 7 deletions
|
@ -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={ }
|
||||
|
|
Loading…
Reference in a new issue