icinga-powershell-framework/lib/icinga/plugin/Get-IcingaInternalPluginOutput.psm1
2021-09-02 09:23:10 +02:00

8 lines
250 B
PowerShell

function Get-IcingaInternalPluginOutput()
{
if ([string]::IsNullOrEmpty($Global:Icinga.PluginExecution.PluginException) -eq $FALSE) {
return $Global:Icinga.PluginExecution.PluginException;
}
return $Global:Icinga.CheckResults;
}