mirror of https://github.com/mikaku/Monitorix.git
closing 3.10.0 version
This commit is contained in:
parent
864d44dc22
commit
90fba55cd5
2
Changes
2
Changes
|
@ -1,4 +1,4 @@
|
||||||
3.N.N - DD-MMM-2017
|
3.10.0 - 25-Sep-2017
|
||||||
====================
|
====================
|
||||||
- Added a complete graph for IPMI sensors using the 'ipmitool' command.
|
- Added a complete graph for IPMI sensors using the 'ipmitool' command.
|
||||||
(suggested by Frank Dijcks, fd AT fdsystems.nl)
|
(suggested by Frank Dijcks, fd AT fdsystems.nl)
|
||||||
|
|
2
README
2
README
|
@ -190,6 +190,6 @@ LICENSE AND COPYRIGHT
|
||||||
Monitorix is distributed under the terms of the GNU General Public License.
|
Monitorix is distributed under the terms of the GNU General Public License.
|
||||||
See the included file "COPYING".
|
See the included file "COPYING".
|
||||||
|
|
||||||
Copyright (C) 2005-2016 Jordi Sanfeliu.
|
Copyright (C) 2005-2017 Jordi Sanfeliu.
|
||||||
http://www.monitorix.org
|
http://www.monitorix.org
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
Summary: Monitorix is a system monitoring tool
|
Summary: Monitorix is a system monitoring tool
|
||||||
Name: monitorix
|
Name: monitorix
|
||||||
Version: 3.9.0
|
Version: 3.10.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
.\" Monitorix manpage.
|
.\" Monitorix manpage.
|
||||||
.\" Copyright (C) 2005-2016 by Jordi Sanfeliu <jordi@fibranet.cat>
|
.\" Copyright (C) 2005-2017 by Jordi Sanfeliu <jordi@fibranet.cat>
|
||||||
.\"
|
.\"
|
||||||
.\" 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 "Oct 2016" 3.9.0 "Monitorix configuration file"
|
.TH monitorix.conf 5 "Sep 2017" 3.10.0 "Monitorix configuration file"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
monitorix.conf \- Configuration file for Monitorix.
|
monitorix.conf \- Configuration file for Monitorix.
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
|
@ -2908,7 +2908,7 @@ This is where you can enter the upper-limit and lower-limit values (separated by
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
Monitorix is written by Jordi Sanfeliu <jordi@fibranet.cat>
|
Monitorix is written by Jordi Sanfeliu <jordi@fibranet.cat>
|
||||||
.SH COPYRIGHT
|
.SH COPYRIGHT
|
||||||
Copyright \(co 2005-2016 Jordi Sanfeliu
|
Copyright \(co 2005-2017 Jordi Sanfeliu
|
||||||
.br
|
.br
|
||||||
Licensed under the GNU General Public License version 2 (GPLv2).
|
Licensed under the GNU General Public License version 2 (GPLv2).
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
.\" Monitorix manpage.
|
.\" Monitorix manpage.
|
||||||
.\" Copyright (C) 2005-2015 by Jordi Sanfeliu <jordi@fibranet.cat>
|
.\" Copyright (C) 2005-2017 by Jordi Sanfeliu <jordi@fibranet.cat>
|
||||||
.\"
|
.\"
|
||||||
.\" This is the man page for the monitorix collector daemon.
|
.\" This is the man page for the monitorix collector daemon.
|
||||||
.\"
|
.\"
|
||||||
.TH monitorix 8 "Sep 2015" 3.8.0 "Monitorix collector daemon"
|
.TH monitorix 8 "Sep 2017" 3.10.0 "Monitorix collector daemon"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
monitorix - a lightweight system monitoring tool
|
monitorix - a lightweight system monitoring tool
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -54,7 +54,7 @@ HTML main page.
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
Monitorix is written by Jordi Sanfeliu <jordi@fibranet.cat>
|
Monitorix is written by Jordi Sanfeliu <jordi@fibranet.cat>
|
||||||
.SH COPYRIGHT
|
.SH COPYRIGHT
|
||||||
Copyright \(co 2005-2015 Jordi Sanfeliu
|
Copyright \(co 2005-2017 Jordi Sanfeliu
|
||||||
.br
|
.br
|
||||||
Licensed under the GNU General Public License version 2 (GPLv2).
|
Licensed under the GNU General Public License version 2 (GPLv2).
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
|
|
|
@ -45,8 +45,8 @@ $SIG{'TERM'} = 'INT_handler';
|
||||||
$SIG{'CHLD'} = 'CHLD_handler';
|
$SIG{'CHLD'} = 'CHLD_handler';
|
||||||
$SIG{'HUP' } = 'HUP_handler';
|
$SIG{'HUP' } = 'HUP_handler';
|
||||||
|
|
||||||
use constant VERSION => "3.9.0";
|
use constant VERSION => "3.10.0";
|
||||||
use constant RELDATE => "14-Oct-2016";
|
use constant RELDATE => "25-Sep-2017";
|
||||||
|
|
||||||
my @suppsys = ("Linux", "FreeBSD", "OpenBSD", "NetBSD");
|
my @suppsys = ("Linux", "FreeBSD", "OpenBSD", "NetBSD");
|
||||||
our %config;
|
our %config;
|
||||||
|
|
Loading…
Reference in New Issue