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

11 lines
267 B
PowerShell

function Restart-IcingaService()
{
param(
$Service
);
if (Get-Service $Service -ErrorAction SilentlyContinue) {
Write-IcingaConsoleNotice ([string]::Format('Restarting service "{0}"', $Service));
Restart-Service $Service;
}
}