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

11 lines
171 B
PowerShell
Raw Normal View History

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