aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2024-03-06 15:28:55 +0100
committerGravatar Christian Hesse <mail@eworm.de>2024-03-12 15:27:15 +0100
commit850e8db9752aa62746183a639da60a0a26b66217 (patch)
tree252a7b3c9769c8084e304bd052b4d4b8c59b1475
parent18ed12e3f7ced88d30b53ab1e4c557d25a2df755 (diff)
ospf-to-leds: drop main function, use :do with on-error
-rw-r--r--ospf-to-leds.rsc10
1 files changed, 4 insertions, 6 deletions
diff --git a/ospf-to-leds.rsc b/ospf-to-leds.rsc
index 3ca16db..73c9922 100644
--- a/ospf-to-leds.rsc
+++ b/ospf-to-leds.rsc
@@ -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={ }