mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 15:19:58 -05:00
12 lines
263 B
PowerShell
12 lines
263 B
PowerShell
function Write-IcingaPluginOutput()
|
|
{
|
|
param(
|
|
$Output
|
|
);
|
|
|
|
if ($global:IcingaDaemonData.FrameworkRunningAsDaemon -eq $FALSE) {
|
|
Write-Host $Output;
|
|
} else {
|
|
$IcingaThreadContent['Scheduler']['PluginCache'] += $Output;
|
|
}
|
|
}
|