diff options
author | Christian Hesse <mail@eworm.de> | 2024-03-06 15:28:55 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2024-03-12 15:27:15 +0100 |
commit | b622f47d6566d2049f95f17c787f1b3ee2b103b4 (patch) | |
tree | 42c0a849f6fbdb54d7c8d4d45215b81cd0292ebb /hotspot-to-wpa-cleanup.wifi.rsc | |
parent | 47b67af2266e8706f8b047477c9db84c6282360a (diff) |
hotspot-to-wpa-cleanup: drop main function, use :do with on-error
Diffstat (limited to 'hotspot-to-wpa-cleanup.wifi.rsc')
-rw-r--r-- | hotspot-to-wpa-cleanup.wifi.rsc | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/hotspot-to-wpa-cleanup.wifi.rsc b/hotspot-to-wpa-cleanup.wifi.rsc index a44064f..3e5799a 100644 --- a/hotspot-to-wpa-cleanup.wifi.rsc +++ b/hotspot-to-wpa-cleanup.wifi.rsc @@ -14,8 +14,8 @@ :global GlobalFunctionsReady; :while ($GlobalFunctionsReady != true) do={ :delay 500ms; } -:local Main do={ - :local ScriptName [ :tostr $1 ]; +:do { + :local ScriptName [ :jobname ]; :global EitherOr; :global LogPrintExit2; @@ -23,7 +23,7 @@ :global ScriptLock; :if ([ $ScriptLock $ScriptName 10 ] = false) do={ - :return false; + :error false; } :local DHCPServers ({}); @@ -71,6 +71,4 @@ /ip/dhcp-server/lease/remove $Lease; } } -} - -$Main [ :jobname ]; +} on-error={ } |