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

9 lines
103 B
PowerShell
Raw Normal View History

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