Skip to content
This repository was archived by the owner on Jan 15, 2019. It is now read-only.

Commit 96c72bc

Browse files
author
Michael Friedrich
committed
Release 1.14.2
1 parent 161c621 commit 96c72bc

File tree

9 files changed

+25
-16
lines changed

9 files changed

+25
-16
lines changed

Changelog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,15 @@ patches for 1.14.x, feature/bug patches are EOL.
2121

2222
Consider a migration to Icinga 2: https://www.icinga.com/docs
2323

24+
1.14.2 - 12/20/2017
25+
26+
SECURITY FIXES
27+
28+
* Don't change ownership of STATEDIR
29+
* Change --with-tmp-{file,path} to default to $localstatedir instead of /tmp
30+
31+
Again, this only affects source installations. Packages are safe.
32+
2433
1.14.1 - 12/19/2017
2534

2635
SECURITY FIXES

Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ MKDIR=/bin/mkdir
8989
###############################
9090
# Global
9191
###############################
92-
ICINGA_VERSION=1.14.1
92+
ICINGA_VERSION=1.14.2
9393

9494
CP=@CP@
9595

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2511,9 +2511,9 @@ ac_config_headers="$ac_config_headers include/config.h"
25112511
25122512
25132513
PKG_NAME=icinga-core
2514-
PKG_VERSION="1.14.1"
2514+
PKG_VERSION="1.14.2"
25152515
PKG_HOME_URL="http://www.icinga.org/"
2516-
PKG_REL_DATE="12-19-2017"
2516+
PKG_REL_DATE="12-20-2017"
25172517
25182518
ac_aux_dir=
25192519
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do

configure.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ AC_CONFIG_HEADER(include/config.h)
99
AC_PREFIX_DEFAULT(/usr/local/icinga)
1010

1111
PKG_NAME=icinga-core
12-
PKG_VERSION="1.14.1"
12+
PKG_VERSION="1.14.2"
1313
PKG_HOME_URL="http://www.icinga.org/"
14-
PKG_REL_DATE="12-19-2017"
14+
PKG_REL_DATE="12-20-2017"
1515

1616
dnl Figure out how to invoke "install" and what install options to use.
1717
AC_PROG_INSTALL

html/main.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
</div>
1919

2020
<div id="currentversioninfo">
21-
<div class="version">Version 1.14.1</div>
22-
<div class="releasedate">December 19, 2017</div>
23-
<div class="whatsnew"><a href="docs/en/whatsnew.html">Read what's new in Icinga 1.14.1</a></div>
21+
<div class="version">Version 1.14.2</div>
22+
<div class="releasedate">December 20, 2017</div>
23+
<div class="whatsnew"><a href="docs/en/whatsnew.html">Read what's new in Icinga 1.14.2</a></div>
2424
</div>
2525

2626
<div id="developer">

icinga.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
Summary: Open Source host, service and network monitoring program
5656
Name: icinga
57-
Version: 1.14.1
57+
Version: 1.14.2
5858
Release: %{revision}%{?dist}
5959
License: GPLv2
6060
Group: Applications/System

include/common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
#define PROGRAM_NAME "Icinga"
2828
#define PROGRAM_NAME_UC "ICINGA"
2929
#define PROGRAM_NAME_LC "icinga"
30-
#define PROGRAM_VERSION "1.14.1"
31-
#define PROGRAM_MODIFICATION_DATE "12-19-2017"
30+
#define PROGRAM_VERSION "1.14.2"
31+
#define PROGRAM_MODIFICATION_DATE "12-20-2017"
3232

3333
/*#define DEBUG_CHECK_IPC 1 */
3434
/*#define DEBUG_CHECK_IPC2 1*/

module/idoutils/include/common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
#define LOG2IDO_NAME "LOG2IDO"
2323

2424
/* only one space for update-version matching */
25-
#define IDO_DATE "12-19-2017"
26-
#define IDO_VERSION "1.14.1"
25+
#define IDO_DATE "12-20-2017"
26+
#define IDO_VERSION "1.14.2"
2727

2828
#define IDO_SCHEMA_VERSION "1.13.0"
2929

update-version

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ else
1010
fi
1111

1212
# Current version number
13-
CURRENTVERSION=1.14.1
13+
CURRENTVERSION=1.14.2
1414

1515
# Last date
16-
LASTDATE=12-19-2017
16+
LASTDATE=12-20-2017
1717

1818
if [ "x$1" = "x" ]
1919
then
@@ -50,7 +50,7 @@ perl -i -p -e "s/Version: .*/Version: $newversion/;" icinga.spec
5050
# Update version number in Makefile.in
5151
perl -i -p -e "s/ICINGA_VERSION=.*/ICINGA_VERSION=$newversion/;" Makefile.in
5252
# needs to be done in current Makefile too (not dependant on configure!)
53-
perl -i -p -e "s/ICINGA_VERSION=.*/ICINGA_VERSION=$newversion/;" Makefile
53+
#perl -i -p -e "s/ICINGA_VERSION=.*/ICINGA_VERSION=$newversion/;" Makefile
5454

5555
# Update version number and release date in main HTML page
5656
perl -i -p -e "s/>Version .*</>Version $newversion</;" html/main.html

0 commit comments

Comments
 (0)