mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 15:19:58 -05:00
9 lines
250 B
PowerShell
9 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;
|
||
|
|
}
|