mirror of https://github.com/Icinga/icinga2.git
8 lines
275 B
PowerShell
Executable File
8 lines
275 B
PowerShell
Executable File
$packageName = 'icinga2'
|
|
$installerType = 'exe'
|
|
$url = 'http://packages.icinga.org/windows/Icinga2-v2.4.0.exe'
|
|
$silentArgs = '/S'
|
|
$validExitCodes = @(0)
|
|
|
|
Install-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$url" -validExitCodes $validExitCodes
|