check-health: drop main function, use :do with on-error

This commit is contained in:
Christian Hesse 2024-03-06 15:28:55 +01:00
parent b1e37c2734
commit 7bf36fa8a5

View file

@ -11,8 +11,8 @@
:global GlobalFunctionsReady; :global GlobalFunctionsReady;
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; } :while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
:local Main do={ :do {
:local ScriptName [ :tostr $1 ]; :local ScriptName [ :jobname ];
:global CheckHealthCPUUtilization; :global CheckHealthCPUUtilization;
:global CheckHealthCPUUtilizationNotified; :global CheckHealthCPUUtilizationNotified;
@ -40,7 +40,7 @@
} }
:if ([ $ScriptLock $ScriptName ] = false) do={ :if ([ $ScriptLock $ScriptName ] = false) do={
:return false; :error false;
} }
:local Resource [ /system/resource/get ]; :local Resource [ /system/resource/get ];
@ -78,7 +78,7 @@
:if ([ :len [ /system/health/find ] ] = 0) do={ :if ([ :len [ /system/health/find ] ] = 0) do={
$LogPrintExit2 debug $ScriptName ("Your device does not provide any health values.") false; $LogPrintExit2 debug $ScriptName ("Your device does not provide any health values.") false;
:return true; :error true;
} }
:if ([ :typeof $CheckHealthLast ] != "array") do={ :if ([ :typeof $CheckHealthLast ] != "array") do={
@ -175,6 +175,4 @@
} }
:set ($CheckHealthLast->$Name) $Value; :set ($CheckHealthLast->$Name) $Value;
} }
} } on-error={ }
$Main [ :jobname ];