icinga-powershell-framework/lib/core/framework/New-IcingaCheckSchedulerEnvironment.psm1
2021-02-22 16:54:39 +01:00

12 lines
295 B
PowerShell

function New-IcingaCheckSchedulerEnvironment()
{
# Legacy code
$IcingaDaemonData.IcingaThreadContent.Add('Scheduler', @{ });
if ($null -eq $global:Icinga) {
$global:Icinga = @{};
}
$global:Icinga.Add('CheckResults', @());
$global:Icinga.Add('PerfData', @());
}