mirror of https://github.com/Icinga/icinga2.git
Release version 2.5.1
This commit is contained in:
parent
cd1b2cdddd
commit
2b6b696616
|
@ -4,6 +4,12 @@ Please check [doc/1-about.md].
|
|||
|
||||
## What's New
|
||||
|
||||
### What's New in Version 2.5.1
|
||||
|
||||
#### Bugfixes
|
||||
|
||||
* Bug 12517 (Notifications): Icinga 2 sends recovery notifications for SOFT NOT-OK states
|
||||
|
||||
### What's New in Version 2.5.0
|
||||
|
||||
#### Changes
|
||||
|
|
|
@ -54,6 +54,12 @@ More details in the [Icinga FAQ](https://www.icinga.org/icinga/faq/).
|
|||
|
||||
## <a id="whats-new"></a> What's New
|
||||
|
||||
### What's New in Version 2.5.1
|
||||
|
||||
#### Bugfixes
|
||||
|
||||
* Bug [12517](https://dev.icinga.org/issues/12517 "Bug 12517") (Notifications): Icinga 2 sends recovery notifications for SOFT NOT-OK states
|
||||
|
||||
### What's New in Version 2.5.0
|
||||
|
||||
#### Changes
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
|
||||
<id>icinga2</id>
|
||||
<title>Icinga2</title>
|
||||
<version>2.5.0</version>
|
||||
<version>2.5.1</version>
|
||||
<authors>2016 - The Icinga Project</authors>
|
||||
<owners>Icinga Development Team</owners>
|
||||
<summary>icinga2 - Monitoring Agent for Windows</summary>
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
|
||||
Summary: Network monitoring application
|
||||
Name: icinga2
|
||||
Version: 2.5.0
|
||||
Version: 2.5.1
|
||||
Release: %{revision}%{?dist}
|
||||
License: GPL-2.0+
|
||||
Group: Applications/System
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
$packageName = 'icinga2'
|
||||
$installerType = 'msi'
|
||||
$url32 = 'http://packages.icinga.org/windows/Icinga2-v2.5.0-x86.msi'
|
||||
$url64 = 'http://packages.icinga.org/windows/Icinga2-v2.5.0-x86_64.msi'
|
||||
$url32 = 'http://packages.icinga.org/windows/Icinga2-v2.5.1-x86.msi'
|
||||
$url64 = 'http://packages.icinga.org/windows/Icinga2-v2.5.1-x86_64.msi'
|
||||
$silentArgs = '/qn /norestart'
|
||||
$validExitCodes = @(0)
|
||||
|
||||
|
|
Loading…
Reference in New Issue