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
commit6f91c97b7fe68dbfd5274259aafbc2a77dd80d3d (patch)
treef1717ea849b8caac4d7bac338b84ad80f8455149
parent341e84682cd3242735a0776640901ed0b9b7bebe (diff)
ipv6-update: drop main function, use :do with on-error
-rw-r--r--ipv6-update.rsc13
1 files changed, 6 insertions, 7 deletions
diff --git a/ipv6-update.rsc b/ipv6-update.rsc
index d173347..8ce1e4d 100644
--- a/ipv6-update.rsc
+++ b/ipv6-update.rsc
@@ -11,16 +11,17 @@
:global GlobalFunctionsReady;
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
-:local Main do={
- :local ScriptName [ :tostr $1 ];
- :local PdPrefix $2;
+:do {
+ :local ScriptName [ :jobname ];
:global LogPrintExit2;
:global ParseKeyValueStore;
:global ScriptLock;
+ :local PdPrefix $"pd-prefix";
+
:if ([ $ScriptLock $ScriptName ] = false) do={
- :return false;
+ :error false;
}
:if ([ :typeof $PdPrefix ] = "nothing") do={
@@ -82,6 +83,4 @@
}
}
}
-}
-
-$Main [ :jobname ] $"pd-prefix";
+} on-error={ }