icinga-powershell-framework/lib/core/framework/New-IcingaCheckSchedulerEnvironment.psm1

13 lines
295 B
PowerShell
Raw Normal View History

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