icinga-powershell-framework/lib/core/windows/Restart-IcingaWindowsService.psm1

8 lines
178 B
PowerShell
Raw Normal View History

function Restart-IcingaForWindows()
2021-08-06 12:12:27 -04:00
{
Stop-IcingaForWindows;
Start-IcingaForWindows;
2021-08-06 12:12:27 -04:00
}
Set-Alias -Name 'Restart-IcingaWindowsService' -Value 'Restart-IcingaForWindows';