[-]
[+]
|
Changed |
icinga.changes
|
|
[-]
[+]
|
Changed |
icinga.spec
^
|
|
[-]
[+]
|
Changed |
icinga-1.9.1.tar.bz2/Changelog
^
|
@@ -13,6 +13,16 @@
- idoutils: ${source}/module/idoutils/config/updates
* package locations may differ!
+1.9.1 - 22/05/2013
+
+FIXES
+* core: fix objects.cache does not get updated on (re)start, but config verify (Christian Ruppert) #4155 - MF
+
+* classic ui: fixed UNICODE characters in JSON output from getting discarded #4193 - RB
+
+* idoutils: fix segfaults on reload with multiple neb modules of the same binary #4033 - MF
+
+
1.9.0 - 07/05/2013
NOTES
|
[-]
[+]
|
Changed |
icinga-1.9.1.tar.bz2/Makefile.in
^
|
@@ -81,7 +81,7 @@
###############################
# Global
###############################
-ICINGA_VERSION=1.9.0
+ICINGA_VERSION=1.9.1
CP=@CP@
|
[-]
[+]
|
Changed |
icinga-1.9.1.tar.bz2/THANKS
^
|
@@ -267,6 +267,7 @@
* John Rouillard
* Guillaume Rousse
* Yves Rubin
+* Christian Ruppert
* Elan Ruusamäe
* Mattias Ryrlen
* Jonathan Saggau
|
[-]
[+]
|
Changed |
icinga-1.9.1.tar.bz2/base/config.c
^
|
@@ -252,7 +252,7 @@
options = READ_ALL_OBJECT_DATA;
/* cache object definitions if we're up and running */
- if (verify_config && test_scheduling == FALSE)
+ if (verify_config == FALSE && test_scheduling == FALSE)
cache = TRUE;
/* precache object definitions */
|
[-]
[+]
|
Changed |
icinga-1.9.1.tar.bz2/base/nebmods.c
^
|
@@ -124,14 +124,13 @@
nebmodule *next_module = NULL;
int x = OK;
- for (temp_module = neb_module_list; temp_module;) {
+ for (temp_module = neb_module_list; temp_module; temp_module = next_module) {
next_module = temp_module->next;
my_free(temp_module->filename);
my_free(temp_module->args);
for (x = 0; x < NEBMODULE_MODINFO_NUMITEMS; x++)
my_free(temp_module->info[x]);
my_free(temp_module);
- temp_module = next_module;
}
neb_module_list = NULL;
|
[-]
[+]
|
Changed |
icinga-1.9.1.tar.bz2/cgi/cgiutils.c
^
|
@@ -3295,7 +3295,7 @@
encoded_string[j++] = 'n';
/* ignore control caracters */
- } else if (input[i] < 32 || input[i] == 127) {
+ } else if ((input[i] > 1 && input[i] < 32) || input[i] == 127) {
continue;
} else
|
[-]
[+]
|
Changed |
icinga-1.9.1.tar.bz2/configure
^
|
@@ -2491,9 +2491,9 @@
PKG_NAME=icinga-core
-PKG_VERSION="1.9.0"
+PKG_VERSION="1.9.1"
PKG_HOME_URL="http://www.icinga.org/"
-PKG_REL_DATE="05-07-2013"
+PKG_REL_DATE="05-22-2013"
ac_aux_dir=
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
|
[-]
[+]
|
Changed |
icinga-1.9.1.tar.bz2/configure.in
^
|
@@ -9,9 +9,9 @@
AC_PREFIX_DEFAULT(/usr/local/icinga)
PKG_NAME=icinga-core
-PKG_VERSION="1.9.0"
+PKG_VERSION="1.9.1"
PKG_HOME_URL="http://www.icinga.org/"
-PKG_REL_DATE="05-07-2013"
+PKG_REL_DATE="05-22-2013"
dnl Figure out how to invoke "install" and what install options to use.
AC_PROG_INSTALL
|
[-]
[+]
|
Changed |
icinga-1.9.1.tar.bz2/html/main.html
^
|
@@ -18,9 +18,9 @@
</div>
<div id="currentversioninfo">
-<div class="version">Version 1.9.0</div>
-<div class="releasedate">May 07, 2013</div>
-<div class="whatsnew"><a href="docs/en/whatsnew.html">Read what's new in Icinga 1.9.0</a></div>
+<div class="version">Version 1.9.1</div>
+<div class="releasedate">Mai 22, 2013</div>
+<div class="whatsnew"><a href="docs/en/whatsnew.html">Read what's new in Icinga 1.9.1</a></div>
</div>
<div id="developer">
|
[-]
[+]
|
Changed |
icinga-1.9.1.tar.bz2/icinga.spec
^
|
@@ -20,7 +20,7 @@
Summary: Open Source host, service and network monitoring program
Name: icinga
-Version: 1.9.0
+Version: 1.9.1
Release: %{revision}%{?dist}
License: GPLv2
Group: Applications/System
@@ -438,6 +438,9 @@
%changelog
+* Wed May 22 2013 Michael Friedrich <michael.friedrich@netways.de> - 1.9.1-1
+- bump 1.9.1
+
* Tue May 07 2013 Michael Friedrich <michael.friedrich@netways.de> - 1.9.0-1
- bump 1.9.0
|
[-]
[+]
|
Changed |
icinga-1.9.1.tar.bz2/include/common.h
^
|
@@ -27,8 +27,8 @@
#define PROGRAM_NAME "Icinga"
#define PROGRAM_NAME_UC "ICINGA"
#define PROGRAM_NAME_LC "icinga"
-#define PROGRAM_VERSION "1.9.0"
-#define PROGRAM_MODIFICATION_DATE "05-07-2013"
+#define PROGRAM_VERSION "1.9.1"
+#define PROGRAM_MODIFICATION_DATE "05-22-2013"
/*#define DEBUG_CHECK_IPC 1 */
/*#define DEBUG_CHECK_IPC2 1*/
|
[-]
[+]
|
Changed |
icinga-1.9.1.tar.bz2/module/idoutils/include/common.h
^
|
@@ -22,8 +22,8 @@
#define LOG2IDO_NAME "LOG2IDO"
/* only one space for update-version matching */
-#define IDO_DATE "05-07-2013"
-#define IDO_VERSION "1.9.0"
+#define IDO_DATE "05-22-2013"
+#define IDO_VERSION "1.9.1"
#define IDO_SCHEMA_VERSION "1.9.0"
|
[-]
[+]
|
Changed |
icinga-1.9.1.tar.bz2/update-version
^
|
@@ -10,10 +10,10 @@
fi
# Current version number
-CURRENTVERSION=1.9.0
+CURRENTVERSION=1.9.1
# Last date
-LASTDATE=05-07-2013
+LASTDATE=05-22-2013
if [ "x$1" = "x" ]
then
|