2009-11-02 Sancho Lerena <slerena@artica.es>
* include/config_process.php: Updated build/version. * pandora_console.spec: Updated to release 2; preparing the rc2. * godmode/agentes/module_manager.php: Fixed a small problem, don't allow to create network modules if not have the snmpconsole due a bad SQL. Fixed. * include/api.php: Removed ending line. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2069 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
31fa8b3d93
commit
173350f6a4
|
@ -1,3 +1,14 @@
|
||||||
|
2009-11-02 Sancho Lerena <slerena@artica.es>
|
||||||
|
|
||||||
|
* include/config_process.php: Updated build/version.
|
||||||
|
|
||||||
|
* pandora_console.spec: Updated to release 2; preparing the rc2.
|
||||||
|
|
||||||
|
* godmode/agentes/module_manager.php: Fixed a small problem, don't allow
|
||||||
|
to create network modules if not have the snmpconsole due a bad SQL. Fixed.
|
||||||
|
|
||||||
|
* include/api.php: Removed ending line.
|
||||||
|
|
||||||
2009-10-30 Ramon Novoa <rnovoa@artica.es>
|
2009-10-30 Ramon Novoa <rnovoa@artica.es>
|
||||||
|
|
||||||
* operation/snmpconsole/snmp_view.php: Added a status filter. Fixed
|
* operation/snmpconsole/snmp_view.php: Added a status filter. Fixed
|
||||||
|
|
|
@ -30,7 +30,7 @@ echo "<tr><td class='datos'>";
|
||||||
// Check if there is at least one server of each type available to assign that
|
// Check if there is at least one server of each type available to assign that
|
||||||
// kind of modules. If not, do not show server type in combo
|
// kind of modules. If not, do not show server type in combo
|
||||||
|
|
||||||
$network_available = get_db_sql ("SELECT count(*) from tserver where server_type = 2");
|
$network_available = get_db_sql ("SELECT count(*) from tserver where server_type = 1");
|
||||||
$wmi_available = get_db_sql ("SELECT count(*) from tserver where server_type = 6");
|
$wmi_available = get_db_sql ("SELECT count(*) from tserver where server_type = 6");
|
||||||
$plugin_available = get_db_sql ("SELECT count(*) from tserver where server_type = 4");
|
$plugin_available = get_db_sql ("SELECT count(*) from tserver where server_type = 4");
|
||||||
$prediction_available = get_db_sql ("SELECT count(*) from tserver where server_type = 5");
|
$prediction_available = get_db_sql ("SELECT count(*) from tserver where server_type = 5");
|
||||||
|
|
|
@ -42,4 +42,4 @@ if (isInACL($ipOrigin)) {
|
||||||
else {
|
else {
|
||||||
echo 'ERROR: Your IP (' . $ipOrigin . ') is not in ACL IP list.';
|
echo 'ERROR: Your IP (' . $ipOrigin . ') is not in ACL IP list.';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -22,8 +22,8 @@
|
||||||
/**
|
/**
|
||||||
* Pandora build version and version
|
* Pandora build version and version
|
||||||
*/
|
*/
|
||||||
$build_version = 'PC091020';
|
$build_version = 'PC091103';
|
||||||
$pandora_version = 'v3.0RC1';
|
$pandora_version = 'v3.0RC2';
|
||||||
|
|
||||||
$config['start_time'] = microtime (true);
|
$config['start_time'] = microtime (true);
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
#
|
#
|
||||||
%define name pandorafms_console
|
%define name pandorafms_console
|
||||||
%define version 3.0.0
|
%define version 3.0.0
|
||||||
|
%define release 2
|
||||||
%define httpd_name httpd
|
%define httpd_name httpd
|
||||||
# User and Group under which Apache is running
|
# User and Group under which Apache is running
|
||||||
%define httpd_name apache2
|
%define httpd_name apache2
|
||||||
|
@ -15,7 +16,6 @@
|
||||||
Summary: Pandora FMS Console
|
Summary: Pandora FMS Console
|
||||||
Name: %{name}
|
Name: %{name}
|
||||||
Version: %{version}
|
Version: %{version}
|
||||||
Release: 1
|
|
||||||
License: GPL
|
License: GPL
|
||||||
Vendor: Artica ST <info@artica.es>
|
Vendor: Artica ST <info@artica.es>
|
||||||
Source0: %{name}-%{version}.tar.gz
|
Source0: %{name}-%{version}.tar.gz
|
||||||
|
|
Loading…
Reference in New Issue