mirror of
https://git.eworm.de/cgit/routeros-scripts
synced 2025-08-17 16:21:15 +02:00
check-health: use $ExitError to indicate unintentional error
This commit is contained in:
parent
00487f93d4
commit
451df78dd8
1 changed files with 6 additions and 1 deletions
|
@ -11,6 +11,7 @@
|
||||||
:global GlobalFunctionsReady;
|
:global GlobalFunctionsReady;
|
||||||
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
|
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
|
||||||
|
|
||||||
|
:local ExitOK false;
|
||||||
:do {
|
:do {
|
||||||
:local ScriptName [ :jobname ];
|
:local ScriptName [ :jobname ];
|
||||||
|
|
||||||
|
@ -40,6 +41,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
:if ([ $ScriptLock $ScriptName ] = false) do={
|
:if ([ $ScriptLock $ScriptName ] = false) do={
|
||||||
|
:set ExitOK true;
|
||||||
:error false;
|
:error false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -78,6 +80,7 @@
|
||||||
|
|
||||||
:if ([ :len [ /system/health/find ] ] = 0) do={
|
:if ([ :len [ /system/health/find ] ] = 0) do={
|
||||||
$LogPrint debug $ScriptName ("Your device does not provide any health values.");
|
$LogPrint debug $ScriptName ("Your device does not provide any health values.");
|
||||||
|
:set ExitOK true;
|
||||||
:error true;
|
:error true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -175,4 +178,6 @@
|
||||||
}
|
}
|
||||||
:set ($CheckHealthLast->$Name) $Value;
|
:set ($CheckHealthLast->$Name) $Value;
|
||||||
}
|
}
|
||||||
} on-error={ }
|
} on-error={
|
||||||
|
:global ExitError; $ExitError $ExitOK [ :jobname ];
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue