icinga-powershell-framework/lib/core/thread/Restart-IcingaThread.psm1

14 lines
209 B
PowerShell
Raw Normal View History

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