mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-20 23:00:35 -05:00
47 lines
1.4 KiB
PowerShell
47 lines
1.4 KiB
PowerShell
<#
|
|
.SYNOPSIS
|
|
Wrapper for Restart-Service which catches errors and prints proper output messages
|
|
.DESCRIPTION
|
|
Restarts a service if it is installed and prints console messages if a restart
|
|
was triggered or the service is not installed
|
|
.FUNCTIONALITY
|
|
Wrapper for restart service which catches errors and prints proper output messages
|
|
.EXAMPLE
|
|
PS>Restart-IcingaService -Service 'icinga2';
|
|
.PARAMETER Service
|
|
The name of the service to be restarted
|
|
.INPUTS
|
|
System.String
|
|
.OUTPUTS
|
|
Null
|
|
.LINK
|
|
https://github.com/Icinga/icinga-powershell-framework
|
|
#>
|
|
|
|
function Restart-IcingaService()
|
|
{
|
|
param (
|
|
$Service
|
|
);
|
|
|
|
if (Get-Service "$Service" -ErrorAction SilentlyContinue) {
|
|
Write-IcingaConsoleNotice ([string]::Format('Restarting service "{0}"', $Service));
|
|
|
|
& powershell.exe -Command {
|
|
Use-Icinga -Minimal;
|
|
|
|
$Service = $args[0];
|
|
try {
|
|
Restart-Service "$Service" -ErrorAction Stop;
|
|
Start-Sleep -Seconds 2;
|
|
Optimize-IcingaForWindowsMemory;
|
|
} catch {
|
|
Write-IcingaConsoleError -Message 'Failed to restart service "{0}". Error: {1}' -Objects $Service, $_.Exception.Message;
|
|
}
|
|
} -Args $Service;
|
|
} else {
|
|
Write-IcingaConsoleWarning -Message 'The service "{0}" is not installed' -Objects $Service;
|
|
}
|
|
|
|
Optimize-IcingaForWindowsMemory;
|
|
}
|