aboutsummaryrefslogtreecommitdiffstats
path: root/dhcp-lease-comment.wifi.rsc
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
commit0d1c4cece27094aa529a5bf75ef5a0bae3bc6321 (patch)
treebde8ce398800b7766d168466cf778b2ae66b77c9 /dhcp-lease-comment.wifi.rsc
parentf79206a9b82850c2df299158191f63d9e57c03f4 (diff)
dhcp-lease-comment: drop main function, use :do with on-error
Diffstat (limited to 'dhcp-lease-comment.wifi.rsc')
-rw-r--r--dhcp-lease-comment.wifi.rsc10
1 files changed, 4 insertions, 6 deletions
diff --git a/dhcp-lease-comment.wifi.rsc b/dhcp-lease-comment.wifi.rsc
index 2552b5a..62ed03d 100644
--- a/dhcp-lease-comment.wifi.rsc
+++ b/dhcp-lease-comment.wifi.rsc
@@ -14,14 +14,14 @@
:global GlobalFunctionsReady;
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
-:local Main do={
- :local ScriptName [ :tostr $1 ];
+:do {
+ :local ScriptName [ :jobname ];
:global LogPrintExit2;
:global ScriptLock;
:if ([ $ScriptLock $ScriptName ] = false) do={
- :return false;
+ :error false;
}
:foreach Lease in=[ /ip/dhcp-server/lease/find where dynamic=yes status=bound ] do={
@@ -36,6 +36,4 @@
/ip/dhcp-server/lease/set comment=$NewComment $Lease;
}
}
-}
-
-$Main [ :jobname ];
+} on-error={ }