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