aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2024-12-06 10:31:52 +0100
committerGravatar Christian Hesse <mail@eworm.de>2024-12-09 11:49:50 +0100
commitbdc15eaefb51b40b3d414f0e94bfa22233b0f2a4 (patch)
tree0b883f3d2c8a41458ce7611482d8e2904a875e1a
parentd89a3694850a76e487b139eebf24572344a5502e (diff)
netwatch-notify: use $ExitError to indicate unintentional error
-rw-r--r--netwatch-notify.rsc6
1 files changed, 5 insertions, 1 deletions
diff --git a/netwatch-notify.rsc b/netwatch-notify.rsc
index a49d0cd..f1e87bd 100644
--- a/netwatch-notify.rsc
+++ b/netwatch-notify.rsc
@@ -11,6 +11,7 @@
:global GlobalFunctionsReady;
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
+:local ExitOK false;
:do {
:local ScriptName [ :jobname ];
@@ -75,6 +76,7 @@
}
:if ([ $ScriptLock $ScriptName ] = false) do={
+ :set ExitOK true;
:error false;
}
@@ -218,4 +220,6 @@
"since"=($Metric->"since") };
}
}
-} on-error={ }
+} on-error={
+ :global ExitError; $ExitError $ExitOK [ :jobname ];
+}