icinga-powershell-framework/lib/core/framework/Restart-IcingaService.psm1
2019-10-31 14:32:19 +01:00

10 lines
175 B
PowerShell

function Restart-IcingaService()
{
param(
$Service
);
if (Get-Service $Service -ErrorAction SilentlyContinue) {
Restart-Service $Service;
}
}