diff options
author | Christian Hesse <mail@eworm.de> | 2024-12-06 10:31:51 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2024-12-09 11:49:50 +0100 |
commit | f9a6916827b3954637f52ac726d937e04a471e3e (patch) | |
tree | d7aa00416d5348ef1a2c5be52bf45e7eb6d01333 /daily-psk.template.rsc | |
parent | bf322781d17629c3254520766ae540fb3ae846be (diff) |
daily-psk.capsman: use $ExitError to indicate unintentional error
Diffstat (limited to 'daily-psk.template.rsc')
-rw-r--r-- | daily-psk.template.rsc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/daily-psk.template.rsc b/daily-psk.template.rsc index 9d71958..7e36b5a 100644 --- a/daily-psk.template.rsc +++ b/daily-psk.template.rsc @@ -15,6 +15,7 @@ :global GlobalFunctionsReady; :while ($GlobalFunctionsReady != true) do={ :delay 500ms; } +:local ExitOK false; :do { :local ScriptName [ :jobname ]; @@ -32,6 +33,7 @@ :global WaitFullyConnected; :if ([ $ScriptLock $ScriptName ] = false) do={ + :set ExitOK true; :error false; } $WaitFullyConnected; @@ -104,4 +106,6 @@ } } } -} on-error={ } +} on-error={ + :global ExitError; $ExitError $ExitOK [ :jobname ]; +} |