icinga-powershell-framework/lib/core/thread/Restart-IcingaThread.psm1
2019-10-05 21:59:03 +02:00

13 lines
209 B
PowerShell

function Restart-IcingaThread()
{
param(
[string]$Thread
);
if ([string]::IsNullOrEmpty($Thread)) {
return;
}
Stop-IcingaThread $Thread;
Start-IcingaThread $Thread;
}