icinga-powershell-framework/lib/core/thread/Set-IcingaEnvironmentThreadName.psm1
2022-03-18 22:54:43 +01:00

8 lines
155 B
PowerShell

function Set-IcingaEnvironmentThreadName()
{
param (
[string]$ThreadName = ''
);
$Global:Icinga.Protected.ThreadName = $ThreadName;
}