diff options
author | Christian Hesse <mail@eworm.de> | 2024-12-06 10:31:52 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2024-12-09 11:49:50 +0100 |
commit | eeb76c227cbc04c410e7062daef4cda9cb3d5bf3 (patch) | |
tree | 933ec9c885ab0b1d5189aef8683e38e72b324b88 | |
parent | bdc15eaefb51b40b3d414f0e94bfa22233b0f2a4 (diff) |
ospf-to-leds: use $ExitError to indicate unintentional error
-rw-r--r-- | ospf-to-leds.rsc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ospf-to-leds.rsc b/ospf-to-leds.rsc index b78faa4..d96e763 100644 --- a/ospf-to-leds.rsc +++ b/ospf-to-leds.rsc @@ -11,6 +11,7 @@ :global GlobalFunctionsReady; :while ($GlobalFunctionsReady != true) do={ :delay 500ms; } +:local ExitOK false; :do { :local ScriptName [ :jobname ]; @@ -19,6 +20,7 @@ :global ScriptLock; :if ([ $ScriptLock $ScriptName ] = false) do={ + :set ExitOK true; :error false; } @@ -42,4 +44,6 @@ /system/leds/set type=off [ find where leds=$LED ]; } } -} on-error={ } +} on-error={ + :global ExitError; $ExitError $ExitOK [ :jobname ]; +} |