icinga-powershell-framework/lib/icinga/plugin/Write-IcingaPluginOutput.psm1

8 lines
103 B
PowerShell

function Write-IcingaPluginOutput()
{
param(
$Output
);
Write-Host $Output;
}