
12,451
Downloads
163
Downloads of v 2.8.4
4/25/2018
Last update
Icinga 2 is an open source monitoring platform which notifies users about host and service outages.
To install Icinga 2, run the following command from the command line or from PowerShell:
C:\> choco install icinga2
To upgrade Icinga 2, run the following command from the command line or from PowerShell:
C:\> choco upgrade icinga2
Files
Hide- tools\chocolateyInstall.ps1
Show
$packageName = 'icinga2' $installerType = 'msi' $url32 = 'https://packages.icinga.com/windows/Icinga2-v2.8.4-x86.msi' $url64 = 'https://packages.icinga.com/windows/Icinga2-v2.8.4-x86_64.msi' $silentArgs = '/qn /norestart' $validExitCodes = @(0) Install-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$url32" "$url64" -validExitCodes $validExitCodes
- tools\chocolateyUninstall.ps1
Show
$packageName = "Icinga 2"; $fileType = 'msi'; $silentArgs = '/qr /norestart' $validExitCodes = @(0) try { $packageGuid = Get-ChildItem HKLM:\SOFTWARE\Classes\Installer\Products | Get-ItemProperty -Name 'ProductName' | ? { $_.ProductName -like $packageName + "*"} | Select -ExpandProperty PSChildName -First 1 $properties = Get-ItemProperty HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\$packageGuid\InstallProperties $file = $properties.LocalPackage # Would like to use the following, but looks like there is a bug in this method when uninstalling MSI's # Uninstall-ChocolateyPackage $packageName $fileType $silentArgs $file -validExitCodes $validExitCodes # Use this instead $msiArgs = "/x $file $silentArgs"; Start-ChocolateyProcessAsAdmin "$msiArgs" 'msiexec' -validExitCodes $validExitCodes Write-ChocolateySuccess $package } catch { Write-ChocolateyFailure $package "$($_.Exception.Message)" throw }
Virus Scan Results
- icinga2.2.8.4.nupkg (6a76e3675325) - ## / 61 - Log in or click on link to see number of positives
- Icinga2-v2.8.4-x86_64.msi (fa387220c2af) - ## / 59 - Log in or click on link to see number of positives
- Icinga2-v2.8.4-x86.msi (a628ca82c310) - ## / 59 - Log in or click on link to see number of positives
Dependencies
This package has no dependencies.
Package Maintainer(s)
Software Author(s)
Tags
Release Notes
https://github.com/Icinga/icinga2/blob/master/ChangeLog
Version History
Version | Downloads | Last updated | Status |
---|---|---|---|
Icinga 2 2.8.4 | 163 | Wednesday, April 25, 2018 | approved |
Icinga 2 2.8.2 | 2940 | Thursday, March 22, 2018 | approved |
Icinga 2 2.8.1 | 974 | Wednesday, January 17, 2018 | approved |
Icinga 2 2.7.2 | 580 | Thursday, November 9, 2017 | approved |
Icinga 2 2.7.1 | 472 | Thursday, September 21, 2017 | approved |
Icinga2 2.6.3 | 1178 | Thursday, March 30, 2017 | approved |
Icinga2 2.6.2 | 498 | Monday, February 13, 2017 | approved |
Icinga2 2.6.1 | 248 | Tuesday, January 31, 2017 | approved |
Icinga2 2.6.0 | 341 | Tuesday, December 13, 2016 | approved |
Discussion for the Icinga 2 Package
Ground rules:
- This discussion is only about Icinga 2 and the Icinga 2 package. If you have feedback for Chocolatey, please contact the google group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Icinga 2, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.