mirror of https://github.com/Icinga/icinga2.git
Release version v2.4.3
This commit is contained in:
parent
e4b99ca87e
commit
071c43c4da
|
@ -4,6 +4,13 @@ Please check [doc/1-about.md].
|
|||
|
||||
## What's New
|
||||
|
||||
### What's New in Version 2.4.3
|
||||
|
||||
#### Bugfixes
|
||||
|
||||
* Bug 11211: Permission problem after running icinga2 node wizard
|
||||
* Bug 11212: Wrong permissions for files in /var/cache/icinga2/*
|
||||
|
||||
### What's New in Version 2.4.2
|
||||
|
||||
#### Changes
|
||||
|
|
|
@ -54,18 +54,25 @@ 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.4.3
|
||||
|
||||
#### Bugfixes
|
||||
|
||||
* Bug [11211](https://dev.icinga.org/issues/11211 "Bug 11211"): Permission problem after running icinga2 node wizard
|
||||
* Bug [11212](https://dev.icinga.org/issues/11212 "Bug 11212"): Wrong permissions for files in /var/cache/icinga2/*
|
||||
|
||||
### What's New in Version 2.4.2
|
||||
|
||||
#### Changes
|
||||
|
||||
* ITL
|
||||
Additional arguments for check_disk
|
||||
Fix incorrect path for the check_hpasm plugin
|
||||
New command: check_iostat
|
||||
Fix incorrect variable names for the check_impi plugin
|
||||
* Additional arguments for check_disk
|
||||
* Fix incorrect path for the check_hpasm plugin
|
||||
* New command: check_iostat
|
||||
* Fix incorrect variable names for the check_impi plugin
|
||||
* Cluster
|
||||
Improve cluster performance
|
||||
Fix connection handling problems (multiple connections for the same endpoint)
|
||||
* Improve cluster performance
|
||||
* Fix connection handling problems (multiple connections for the same endpoint)
|
||||
* Performance improvements for the DB IDO modules
|
||||
* Lots and lots of various other bugfixes
|
||||
* Documentation updates
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
|
||||
<id>icinga2</id>
|
||||
<title>Icinga2</title>
|
||||
<version>2.4.2</version>
|
||||
<authors>2015 - The Icinga Project</authors>
|
||||
<version>2.4.3</version>
|
||||
<authors>2016 - The Icinga Project</authors>
|
||||
<owners>Icinga Development Team</owners>
|
||||
<summary>icinga2 - Monitoring Agent for Windows</summary>
|
||||
<description>Icinga 2 is an open source monitoring platform which notifies users about host and service outages.</description>
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
|
||||
Summary: Network monitoring application
|
||||
Name: icinga2
|
||||
Version: 2.4.2
|
||||
Version: 2.4.3
|
||||
Release: %{revision}%{?dist}
|
||||
License: GPL-2.0+
|
||||
Group: Applications/System
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$packageName = 'icinga2'
|
||||
$installerType = 'exe'
|
||||
$url = 'http://packages.icinga.org/windows/Icinga2-v2.4.2.exe'
|
||||
$url = 'http://packages.icinga.org/windows/Icinga2-v2.4.3.exe'
|
||||
$silentArgs = '/S'
|
||||
$validExitCodes = @(0)
|
||||
|
||||
|
|
Loading…
Reference in New Issue