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

12 lines
252 B
PowerShell
Raw Normal View History

function Restart-IcingaService()
{
param(
$Service
);
if (Get-Service $Service -ErrorAction SilentlyContinue) {
2019-11-02 12:42:56 -04:00
Write-Host ([string]::Format('Restarting service "{0}"', $Service));
Restart-Service $Service;
}
}