icinga-powershell-framework/lib/core/framework/Restart-IcingaService.psm1

11 lines
175 B
PowerShell
Raw Normal View History

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