mirror of https://github.com/mikaku/Monitorix.git
closing version 3.13.1
This commit is contained in:
parent
17aec754e8
commit
0ad16e8a78
10
Changes
10
Changes
|
@ -1,3 +1,13 @@
|
||||||
|
3.13.1 - 27-Jan-2021
|
||||||
|
====================
|
||||||
|
- Fixed a security bug introduced in 3.13.0 version that lead the HTTP built-in
|
||||||
|
server to bypass Basic Authentication when the new option 'hosts_deny' is not
|
||||||
|
defined. [#309]
|
||||||
|
- Fixed in HTTP built-in server configuration to force Basic Authentication to
|
||||||
|
any host, by default. [#309]
|
||||||
|
- Reduced the number of padding lines in 'phpfpm.pm'.
|
||||||
|
|
||||||
|
|
||||||
3.13.0 - 22-Jan-2021
|
3.13.0 - 22-Jan-2021
|
||||||
====================
|
====================
|
||||||
- Added a complete graph to support PostgreSQL statistics ('pgsql.pm'). [#84]
|
- Added a complete graph to support PostgreSQL statistics ('pgsql.pm'). [#84]
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
Summary: Monitorix is a system monitoring tool
|
Summary: Monitorix is a system monitoring tool
|
||||||
Name: monitorix
|
Name: monitorix
|
||||||
Version: 3.13.0
|
Version: 3.13.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
.\"
|
.\"
|
||||||
.\" This is the man page for the monitorix.conf configuration file.
|
.\" This is the man page for the monitorix.conf configuration file.
|
||||||
.\"
|
.\"
|
||||||
.TH monitorix.conf 5 "Jan 2021" 3.13.0 "Monitorix configuration file"
|
.TH monitorix.conf 5 "Jan 2021" 3.13.1 "Monitorix configuration file"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
monitorix.conf \- Configuration file for Monitorix.
|
monitorix.conf \- Configuration file for Monitorix.
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
.\"
|
.\"
|
||||||
.\" This is the man page for the monitorix collector daemon.
|
.\" This is the man page for the monitorix collector daemon.
|
||||||
.\"
|
.\"
|
||||||
.TH monitorix 8 "Jan 2021" 3.13.0 "Monitorix collector daemon"
|
.TH monitorix 8 "Jan 2021" 3.13.1 "Monitorix collector daemon"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
monitorix - a lightweight system monitoring tool
|
monitorix - a lightweight system monitoring tool
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
|
@ -44,8 +44,8 @@ $SIG{'STOP'} = 'INT_handler';
|
||||||
$SIG{'TERM'} = 'INT_handler';
|
$SIG{'TERM'} = 'INT_handler';
|
||||||
$SIG{'HUP' } = 'HUP_handler';
|
$SIG{'HUP' } = 'HUP_handler';
|
||||||
|
|
||||||
use constant VERSION => "3.13.0";
|
use constant VERSION => "3.13.1";
|
||||||
use constant RELDATE => "22-Jan-2021";
|
use constant RELDATE => "27-Jan-2021";
|
||||||
|
|
||||||
my @suppsys = ("Linux", "FreeBSD", "OpenBSD", "NetBSD");
|
my @suppsys = ("Linux", "FreeBSD", "OpenBSD", "NetBSD");
|
||||||
our %config;
|
our %config;
|
||||||
|
|
Loading…
Reference in New Issue