mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-29 16:55:05 +02:00
Merge branch 'develop' into move_mr_to_um
This commit is contained in:
commit
b5168928e8
@ -1,5 +1,5 @@
|
|||||||
package: pandorafms-agent-unix
|
package: pandorafms-agent-unix
|
||||||
Version: 7.0NG
|
Version: 7.0NG-170313
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Section: admin
|
Section: admin
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
|
|
||||||
pandora_version="7.0NG"
|
pandora_version="7.0NG-170313"
|
||||||
|
|
||||||
echo "Test if you has the tools for to make the packages."
|
echo "Test if you has the tools for to make the packages."
|
||||||
whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
|
whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
|
||||||
|
@ -41,7 +41,7 @@ my $Sem = undef;
|
|||||||
my $ThreadSem = undef;
|
my $ThreadSem = undef;
|
||||||
|
|
||||||
use constant AGENT_VERSION => '7.0NG';
|
use constant AGENT_VERSION => '7.0NG';
|
||||||
use constant AGENT_BUILD => '170310';
|
use constant AGENT_BUILD => '170313';
|
||||||
|
|
||||||
# Agent log default file size maximum and instances
|
# Agent log default file size maximum and instances
|
||||||
use constant DEFAULT_MAX_LOG_SIZE => 600000;
|
use constant DEFAULT_MAX_LOG_SIZE => 600000;
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#
|
#
|
||||||
%define name pandorafms_agent_unix
|
%define name pandorafms_agent_unix
|
||||||
%define version 7.0NG
|
%define version 7.0NG
|
||||||
%define release 1
|
%define release 170313
|
||||||
|
|
||||||
Summary: Pandora FMS Linux agent, PERL version
|
Summary: Pandora FMS Linux agent, PERL version
|
||||||
Name: %{name}
|
Name: %{name}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#
|
#
|
||||||
%define name pandorafms_agent_unix
|
%define name pandorafms_agent_unix
|
||||||
%define version 7.0NG
|
%define version 7.0NG
|
||||||
%define release 1
|
%define release 170313
|
||||||
|
|
||||||
Summary: Pandora FMS Linux agent, PERL version
|
Summary: Pandora FMS Linux agent, PERL version
|
||||||
Name: %{name}
|
Name: %{name}
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
# **********************************************************************
|
# **********************************************************************
|
||||||
|
|
||||||
PI_VERSION="7.0NG"
|
PI_VERSION="7.0NG"
|
||||||
PI_BUILD="170310"
|
PI_BUILD="170313"
|
||||||
OS_NAME=`uname -s`
|
OS_NAME=`uname -s`
|
||||||
|
|
||||||
FORCE=0
|
FORCE=0
|
||||||
|
53
pandora_agents/win32/bin/util/df_percent_used_op.vbs
Normal file
53
pandora_agents/win32/bin/util/df_percent_used_op.vbs
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
' df_all.vbs
|
||||||
|
' Returns used space (%) for all drives
|
||||||
|
' Pandora FMS Plugin, (c) 2014 Sancho Lerena
|
||||||
|
' ------------------------------------------
|
||||||
|
|
||||||
|
Option Explicit
|
||||||
|
On Error Resume Next
|
||||||
|
|
||||||
|
' Variables
|
||||||
|
Dim objWMIService, objItem, colItems, argc, argv, i, Percent
|
||||||
|
|
||||||
|
|
||||||
|
' Parse command line parameters
|
||||||
|
argc = Wscript.Arguments.Count
|
||||||
|
Set argv = CreateObject("Scripting.Dictionary")
|
||||||
|
For i = 0 To argc - 1
|
||||||
|
argv.Add Wscript.Arguments(i), i
|
||||||
|
Next
|
||||||
|
|
||||||
|
' Get drive information
|
||||||
|
Set objWMIService = GetObject ("winmgmts:\\.\root\cimv2")
|
||||||
|
Set colItems = objWMIService.ExecQuery ("Select * from Win32_LogicalDisk")
|
||||||
|
|
||||||
|
For Each objItem in colItems
|
||||||
|
If argc = 0 Or argv.Exists(objItem.Name) Then
|
||||||
|
' Include only harddrivers (type 3)
|
||||||
|
If (objItem.FreeSpace <> "") AND (objItem.DriveType =3) Then
|
||||||
|
Percent = round (100 - (objItem.FreeSpace / objItem.Size) * 100, 2)
|
||||||
|
Wscript.StdOut.WriteLine "<module>"
|
||||||
|
If (objItem.Name = "C:") Then
|
||||||
|
Wscript.StdOut.WriteLine " <name><![CDATA[DiskUsed_/]]></name>"
|
||||||
|
Else
|
||||||
|
Wscript.StdOut.WriteLine " <name><![CDATA[DiskUsed_" & objItem.Name & "]]></name>"
|
||||||
|
End If
|
||||||
|
Wscript.StdOut.WriteLine " <description><![CDATA[% used space. Filesystem unit: " & objItem.Name & "]]></description>"
|
||||||
|
If (Percent > 99.99) then
|
||||||
|
Wscript.StdOut.WriteLine " <data><![CDATA[" & 100 & "]]></data>"
|
||||||
|
Elseif (Percent < 0.01) then
|
||||||
|
Wscript.StdOut.WriteLine " <data><![CDATA[" & 0 & "]]></data>"
|
||||||
|
Else
|
||||||
|
Wscript.StdOut.WriteLine " <data><![CDATA[" & Percent & "]]></data>"
|
||||||
|
End If
|
||||||
|
Wscript.StdOut.WriteLine " <unit>%</unit>"
|
||||||
|
Wscript.StdOut.WriteLine " <min_warning>90</min_warning>"
|
||||||
|
Wscript.StdOut.WriteLine " <max_warning>0</max_warning>"
|
||||||
|
Wscript.StdOut.WriteLine " <min_critical>95</min_critical>"
|
||||||
|
Wscript.StdOut.WriteLine " <max_critical>0</max_critical>"
|
||||||
|
Wscript.StdOut.WriteLine " <module_group>System</module_group>"
|
||||||
|
Wscript.StdOut.WriteLine "</module>"
|
||||||
|
Wscript.StdOut.flush
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
Next
|
@ -186,7 +186,7 @@ UpgradeApplicationID
|
|||||||
{}
|
{}
|
||||||
|
|
||||||
Version
|
Version
|
||||||
{170310}
|
{170313}
|
||||||
|
|
||||||
ViewReadme
|
ViewReadme
|
||||||
{Yes}
|
{Yes}
|
||||||
@ -2387,7 +2387,7 @@ Windows,BuildSeparateArchives
|
|||||||
{No}
|
{No}
|
||||||
|
|
||||||
Windows,Executable
|
Windows,Executable
|
||||||
{<%AppName%>-Setup<%Ext%>}
|
{<%AppName%>-<%Version%>-Setup<%Ext%>}
|
||||||
|
|
||||||
Windows,FileDescription
|
Windows,FileDescription
|
||||||
{<%AppName%> <%Version%> Setup}
|
{<%AppName%> <%Version%> Setup}
|
||||||
|
@ -30,7 +30,7 @@ using namespace Pandora;
|
|||||||
using namespace Pandora_Strutils;
|
using namespace Pandora_Strutils;
|
||||||
|
|
||||||
#define PATH_SIZE _MAX_PATH+1
|
#define PATH_SIZE _MAX_PATH+1
|
||||||
#define PANDORA_VERSION ("7.0NG(Build 170310)")
|
#define PANDORA_VERSION ("7.0NG(Build 170313)")
|
||||||
|
|
||||||
string pandora_path;
|
string pandora_path;
|
||||||
string pandora_dir;
|
string pandora_dir;
|
||||||
|
@ -11,7 +11,7 @@ BEGIN
|
|||||||
VALUE "LegalCopyright", "Artica ST"
|
VALUE "LegalCopyright", "Artica ST"
|
||||||
VALUE "OriginalFilename", "PandoraAgent.exe"
|
VALUE "OriginalFilename", "PandoraAgent.exe"
|
||||||
VALUE "ProductName", "Pandora FMS Windows Agent"
|
VALUE "ProductName", "Pandora FMS Windows Agent"
|
||||||
VALUE "ProductVersion", "(7.0NG(Build 170310))"
|
VALUE "ProductVersion", "(7.0NG(Build 170313))"
|
||||||
VALUE "FileVersion", "1.0.0.0"
|
VALUE "FileVersion", "1.0.0.0"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
package: pandorafms-console
|
package: pandorafms-console
|
||||||
Version: 7.0NG
|
Version: 7.0NG-170313
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Section: admin
|
Section: admin
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
|
|
||||||
pandora_version="7.0NG"
|
pandora_version="7.0NG-170313"
|
||||||
|
|
||||||
package_pear=0
|
package_pear=0
|
||||||
package_pandora=1
|
package_pandora=1
|
||||||
|
@ -103,8 +103,8 @@ $data[2] = '<span id="alerts_loading" class="invisible">';
|
|||||||
$data[2] .= html_print_image('images/spinner.png', true);
|
$data[2] .= html_print_image('images/spinner.png', true);
|
||||||
$data[2] .= '</span>';
|
$data[2] .= '</span>';
|
||||||
$users_profiles = "";
|
$users_profiles = "";
|
||||||
|
$users_order = array('field' => 'full_name', 'order' => 'ASC');
|
||||||
$data[2] .= html_print_select (users_get_info(), 'users_id[]', '', '', '',
|
$data[2] .= html_print_select (users_get_info($users_order), 'users_id[]', '', '', '',
|
||||||
'', true, true, true, '', false, 'width: 100%');
|
'', true, true, true, '', false, 'width: 100%');
|
||||||
|
|
||||||
|
|
||||||
|
@ -117,8 +117,8 @@ $data[2] = '<span id="users_loading" class="invisible">';
|
|||||||
$data[2] .= html_print_image('images/spinner.png', true);
|
$data[2] .= html_print_image('images/spinner.png', true);
|
||||||
$data[2] .= '</span>';
|
$data[2] .= '</span>';
|
||||||
$users_profiles = "";
|
$users_profiles = "";
|
||||||
|
$users_order = array('field' => 'id_user', 'order' => 'ASC');
|
||||||
$data[2] .= html_print_select (array(), 'users_id[]', '', '', '',
|
$data[2] .= html_print_select (users_get_info($users_order), 'users_id[]', '', '', '',
|
||||||
'', true, true, true, '', false, 'width: 100%');
|
'', true, true, true, '', false, 'width: 100%');
|
||||||
|
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
/**
|
/**
|
||||||
* Pandora build version and version
|
* Pandora build version and version
|
||||||
*/
|
*/
|
||||||
$build_version = 'PC170310';
|
$build_version = 'PC170313';
|
||||||
$pandora_version = 'v7.0NG';
|
$pandora_version = 'v7.0NG';
|
||||||
|
|
||||||
// Do not overwrite default timezone set if defined.
|
// Do not overwrite default timezone set if defined.
|
||||||
|
@ -90,7 +90,7 @@ function agents_create_agent ($name, $id_group, $interval, $ip_address, $values
|
|||||||
|
|
||||||
$id_agent = db_process_sql_insert ('tagente', $values);
|
$id_agent = db_process_sql_insert ('tagente', $values);
|
||||||
if ($id_agent === false) {
|
if ($id_agent === false) {
|
||||||
return false;,
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create address for this agent in taddress
|
// Create address for this agent in taddress
|
||||||
|
@ -71,7 +71,7 @@
|
|||||||
<div style='height: 10px'>
|
<div style='height: 10px'>
|
||||||
<?php
|
<?php
|
||||||
$version = '7.0NG';
|
$version = '7.0NG';
|
||||||
$build = '170310';
|
$build = '170313';
|
||||||
$banner = "v$version Build $build";
|
$banner = "v$version Build $build";
|
||||||
|
|
||||||
error_reporting(0);
|
error_reporting(0);
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#
|
#
|
||||||
%define name pandorafms_console
|
%define name pandorafms_console
|
||||||
%define version 7.0NG
|
%define version 7.0NG
|
||||||
%define release 1
|
%define release 170313
|
||||||
|
|
||||||
# User and Group under which Apache is running
|
# User and Group under which Apache is running
|
||||||
%define httpd_name httpd
|
%define httpd_name httpd
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#
|
#
|
||||||
%define name pandorafms_console
|
%define name pandorafms_console
|
||||||
%define version 7.0NG
|
%define version 7.0NG
|
||||||
%define release 1
|
%define release 170313
|
||||||
%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
|
||||||
|
@ -66,7 +66,7 @@ INSERT INTO tconfig (token, value) VALUES ('graph_res','5');
|
|||||||
INSERT INTO tconfig (token, value) VALUES ('step_compact','1');
|
INSERT INTO tconfig (token, value) VALUES ('step_compact','1');
|
||||||
INSERT INTO tconfig (token, value) VALUES ('db_scheme_first_version','6.0orc');
|
INSERT INTO tconfig (token, value) VALUES ('db_scheme_first_version','6.0orc');
|
||||||
INSERT INTO tconfig (token, value) VALUES('db_scheme_version','7.0NG');
|
INSERT INTO tconfig (token, value) VALUES('db_scheme_version','7.0NG');
|
||||||
INSERT INTO tconfig (token, value) VALUES('db_scheme_build','PD170310');
|
INSERT INTO tconfig (token, value) VALUES('db_scheme_build','PD170313');
|
||||||
INSERT INTO tconfig (token, value) VALUES ('show_unknown','0');
|
INSERT INTO tconfig (token, value) VALUES ('show_unknown','0');
|
||||||
INSERT INTO tconfig (token, value) VALUES ('show_lastalerts','1');
|
INSERT INTO tconfig (token, value) VALUES ('show_lastalerts','1');
|
||||||
INSERT INTO tconfig (token, value) VALUES ('style','pandora');
|
INSERT INTO tconfig (token, value) VALUES ('style','pandora');
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
package: pandorafms-server
|
package: pandorafms-server
|
||||||
Version: 7.0NG
|
Version: 7.0NG-170313
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Section: admin
|
Section: admin
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
|
|
||||||
pandora_version="7.0NG"
|
pandora_version="7.0NG-170313"
|
||||||
|
|
||||||
package_cpan=0
|
package_cpan=0
|
||||||
package_pandora=1
|
package_pandora=1
|
||||||
|
@ -43,7 +43,7 @@ our @EXPORT = qw(
|
|||||||
|
|
||||||
# version: Defines actual version of Pandora Server for this module only
|
# version: Defines actual version of Pandora Server for this module only
|
||||||
my $pandora_version = "7.0NG";
|
my $pandora_version = "7.0NG";
|
||||||
my $pandora_build = "170310";
|
my $pandora_build = "170313";
|
||||||
our $VERSION = $pandora_version." ".$pandora_build;
|
our $VERSION = $pandora_version." ".$pandora_build;
|
||||||
|
|
||||||
# Setup hash
|
# Setup hash
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#
|
#
|
||||||
%define name pandorafms_server
|
%define name pandorafms_server
|
||||||
%define version 7.0NG
|
%define version 7.0NG
|
||||||
%define release 1
|
%define release 170313
|
||||||
|
|
||||||
Summary: Pandora FMS Server
|
Summary: Pandora FMS Server
|
||||||
Name: %{name}
|
Name: %{name}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#
|
#
|
||||||
%define name pandorafms_server
|
%define name pandorafms_server
|
||||||
%define version 7.0NG
|
%define version 7.0NG
|
||||||
%define release 1
|
%define release 170313
|
||||||
|
|
||||||
Summary: Pandora FMS Server
|
Summary: Pandora FMS Server
|
||||||
Name: %{name}
|
Name: %{name}
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
# **********************************************************************
|
# **********************************************************************
|
||||||
|
|
||||||
PI_VERSION="7.0NG"
|
PI_VERSION="7.0NG"
|
||||||
PI_BUILD="170310"
|
PI_BUILD="170313"
|
||||||
|
|
||||||
MODE=$1
|
MODE=$1
|
||||||
if [ $# -gt 1 ]; then
|
if [ $# -gt 1 ]; then
|
||||||
|
@ -33,7 +33,7 @@ use PandoraFMS::Tools;
|
|||||||
use PandoraFMS::DB;
|
use PandoraFMS::DB;
|
||||||
|
|
||||||
# version: define current version
|
# version: define current version
|
||||||
my $version = "7.0NG PS170310";
|
my $version = "7.0NG PS170313";
|
||||||
|
|
||||||
# Pandora server configuration
|
# Pandora server configuration
|
||||||
my %conf;
|
my %conf;
|
||||||
|
@ -35,7 +35,7 @@ use Encode::Locale;
|
|||||||
Encode::Locale::decode_argv;
|
Encode::Locale::decode_argv;
|
||||||
|
|
||||||
# version: define current version
|
# version: define current version
|
||||||
my $version = "7.0NG PS170310";
|
my $version = "7.0NG PS170313";
|
||||||
|
|
||||||
# save program name for logging
|
# save program name for logging
|
||||||
my $progname = basename($0);
|
my $progname = basename($0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user