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

11 lines
169 B
PowerShell
Raw Normal View History

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