mirror of
https://github.com/eworm-de/routeros-scripts
synced 2024-05-14 08:04:19 +00:00
global-functions: catch runtime error when loading modules
This commit is contained in:
parent
7c8e230521
commit
e74bec7e5b
1 changed files with 5 additions and 1 deletions
|
@ -1269,7 +1269,11 @@
|
|||
:foreach Script in=[ / system script find where name ~ "^mod/." ] do={
|
||||
:local ScriptVal [ / system script get $Script ];
|
||||
:if ([ $ValidateSyntax ($ScriptVal->"source") ] = true) do={
|
||||
/ system script run $Script;
|
||||
:do {
|
||||
/ system script run $Script;
|
||||
} on-error={
|
||||
$LogPrintExit2 error $0 ("Module '" . $ScriptVal->"name" . "' failed to run.") false;
|
||||
}
|
||||
} else={
|
||||
$LogPrintExit2 error $0 ("Module '" . $ScriptVal->"name" . "' failed syntax validation, skipping.") false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue