1
0
mirror of https://github.com/eworm-de/routeros-scripts.git synced 2024-05-11 05:55:19 +00:00

ospf-to-leds: drop main function, use :do with on-error

This commit is contained in:
Christian Hesse
2024-03-06 15:28:55 +01:00
parent 18ed12e3f7
commit 850e8db975

View File

@@ -11,15 +11,15 @@
:global GlobalFunctionsReady;
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
:local Main do={
:local ScriptName [ :tostr $1 ];
:do {
:local ScriptName [ :jobname ];
:global LogPrintExit2;
:global ParseKeyValueStore;
:global ScriptLock;
:if ([ $ScriptLock $ScriptName ] = false) do={
:return false;
:error false;
}
:foreach Instance in=[ /routing/ospf/instance/find where comment~"^ospf-to-leds," ] do={
@@ -42,6 +42,4 @@
/system/leds/set type=off [ find where leds=$LED ];
}
}
}
$Main [ :jobname ];
} on-error={ }