mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-28 08:14:38 +02:00
Merge branch 'develop' into feature/NewView
This commit is contained in:
commit
05c47bcafe
@ -1,5 +1,5 @@
|
|||||||
package: pandorafms-agent-unix
|
package: pandorafms-agent-unix
|
||||||
Version: 6.0dev-150420
|
Version: 6.0dev-150421
|
||||||
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="6.0dev-150420"
|
pandora_version="6.0dev-150421"
|
||||||
|
|
||||||
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 => '6.0dev';
|
use constant AGENT_VERSION => '6.0dev';
|
||||||
use constant AGENT_BUILD => '150420';
|
use constant AGENT_BUILD => '150421';
|
||||||
|
|
||||||
# Commands to retrieve total memory information in kB
|
# Commands to retrieve total memory information in kB
|
||||||
use constant TOTALMEMORY_CMDS => {
|
use constant TOTALMEMORY_CMDS => {
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#
|
#
|
||||||
%define name pandorafms_agent_unix
|
%define name pandorafms_agent_unix
|
||||||
%define version 6.0dev
|
%define version 6.0dev
|
||||||
%define release 150420
|
%define release 150421
|
||||||
|
|
||||||
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 6.0dev
|
%define version 6.0dev
|
||||||
%define release 150420
|
%define release 150421
|
||||||
|
|
||||||
Summary: Pandora FMS Linux agent, PERL version
|
Summary: Pandora FMS Linux agent, PERL version
|
||||||
Name: %{name}
|
Name: %{name}
|
||||||
|
@ -186,7 +186,7 @@ UpgradeApplicationID
|
|||||||
{}
|
{}
|
||||||
|
|
||||||
Version
|
Version
|
||||||
{150420}
|
{150421}
|
||||||
|
|
||||||
ViewReadme
|
ViewReadme
|
||||||
{Yes}
|
{Yes}
|
||||||
|
@ -392,16 +392,16 @@ Pandora_Module_Logevent::getLogEvents (list<string> &event_list, unsigned char d
|
|||||||
event << "]";
|
event << "]";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Remove carriage returns and new lines in between the description.
|
// Remove carriage returns and new lines in between the description.
|
||||||
output = "";
|
output = "";
|
||||||
for (size_t i = 0; i < description.size(); i++) {
|
for (size_t i = 0; i < description.size(); i++) {
|
||||||
if (description[i] != '\n' && description[i] != '\r') {
|
if (description[i] != '\n' && description[i] != '\r') {
|
||||||
output += description[i];
|
output += description[i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
output += '\n';
|
output += '\n';
|
||||||
|
|
||||||
// Print the event description
|
// Print the event description
|
||||||
event << " ";
|
event << " ";
|
||||||
event << output;
|
event << output;
|
||||||
@ -508,7 +508,7 @@ Pandora_Module_Logevent::getEventDescription (PEVENTLOGRECORD pevlr, char *messa
|
|||||||
exe_file_path_end = ((char *) exe_file_path) + _MAX_PATH * sizeof (TCHAR);
|
exe_file_path_end = ((char *) exe_file_path) + _MAX_PATH * sizeof (TCHAR);
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
// Load the DLL
|
// Load the DLL
|
||||||
module = LoadLibraryEx (dll_start, 0, flags);
|
module = LoadLibraryEx (dll_start, 0, flags);
|
||||||
if(module == NULL) {
|
if(module == NULL) {
|
||||||
pandoraDebug("LoadLibraryEx error %d. Exe file path %s.", GetLastError(), exe_file_path);
|
pandoraDebug("LoadLibraryEx error %d. Exe file path %s.", GetLastError(), exe_file_path);
|
||||||
@ -572,7 +572,7 @@ Pandora_Module_Logevent::getEventDescriptionXPATH (PEVENTLOGRECORD pevlr) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Build the XPATH query
|
// Build the XPATH query
|
||||||
query = "Event/System[EventID=" + inttostr(pevlr->EventID & EVENT_ID_MASK) + "]";
|
query = "Event/System[EventRecordID=" + inttostr(pevlr->RecordNumber) + "]";
|
||||||
pwsQuery = strAnsiToUnicode (query.c_str());
|
pwsQuery = strAnsiToUnicode (query.c_str());
|
||||||
pwsPath = strAnsiToUnicode (this->source.c_str());
|
pwsPath = strAnsiToUnicode (this->source.c_str());
|
||||||
|
|
||||||
|
@ -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 ("6.0dev(Build 150420)")
|
#define PANDORA_VERSION ("6.0dev(Build 150421)")
|
||||||
|
|
||||||
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", "(6.0dev(Build 150420))"
|
VALUE "ProductVersion", "(6.0dev(Build 150421))"
|
||||||
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: 6.0dev-150420
|
Version: 6.0dev-150421
|
||||||
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="6.0dev-150420"
|
pandora_version="6.0dev-150421"
|
||||||
|
|
||||||
package_pear=0
|
package_pear=0
|
||||||
package_pandora=1
|
package_pandora=1
|
||||||
|
@ -1015,7 +1015,7 @@ if ($list_modules) {
|
|||||||
$id_agente . ", " .
|
$id_agente . ", " .
|
||||||
"\"" . $server_name . "\", " .
|
"\"" . $server_name . "\", " .
|
||||||
0 . ", " .
|
0 . ", " .
|
||||||
SECONDS_1DAY . ', "' . $module["module_name"] . ")'>". html_print_image ("images/binary.png", true, array ("border" => "0", "alt" => "")) . "</a>";
|
SECONDS_1DAY . ", \" " . modules_get_agentmodule_name( $module["id_agente_modulo"] ) . "\")'>". html_print_image ("images/binary.png", true, array ("border" => "0", "alt" => "")) . "</a>";
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($module['estado'] == 3) {
|
if ($module['estado'] == 3) {
|
||||||
|
@ -1342,7 +1342,7 @@ class Tree {
|
|||||||
"type" => $graphType,
|
"type" => $graphType,
|
||||||
"period" => SECONDS_1DAY,
|
"period" => SECONDS_1DAY,
|
||||||
"id" => $module['id'],
|
"id" => $module['id'],
|
||||||
"label" => rawurlencode(urlencode(base64_encode($module['name']))),
|
"label" => base64_encode($module['name']),
|
||||||
"refresh" => SECONDS_10MINUTES
|
"refresh" => SECONDS_10MINUTES
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
/**
|
/**
|
||||||
* Pandora build version and version
|
* Pandora build version and version
|
||||||
*/
|
*/
|
||||||
$build_version = 'PC150420';
|
$build_version = 'PC150421';
|
||||||
$pandora_version = 'v6.0dev';
|
$pandora_version = 'v6.0dev';
|
||||||
|
|
||||||
// Do not overwrite default timezone set if defined.
|
// Do not overwrite default timezone set if defined.
|
||||||
|
@ -390,7 +390,7 @@ TreeController = {
|
|||||||
try {
|
try {
|
||||||
var serverName = element.serverName.length > 0 ? element.serverName : '';
|
var serverName = element.serverName.length > 0 ? element.serverName : '';
|
||||||
if ($("#module_details_window").length > 0)
|
if ($("#module_details_window").length > 0)
|
||||||
show_module_detail_dialog(element.id, '', serverName, 0, 86400, element.name.replace(" ", " ") );
|
show_module_detail_dialog(element.id, '', serverName, 0, 86400, element.name.replace(/ /g , " ") );
|
||||||
}
|
}
|
||||||
catch (error) {
|
catch (error) {
|
||||||
// console.log(error);
|
// console.log(error);
|
||||||
|
Binary file not shown.
@ -10,14 +10,14 @@ msgstr ""
|
|||||||
"Project-Id-Version: index.es\n"
|
"Project-Id-Version: index.es\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2015-04-15 11:14+0200\n"
|
"POT-Creation-Date: 2015-04-15 11:14+0200\n"
|
||||||
"PO-Revision-Date: 2015-04-15 09:49+0000\n"
|
"PO-Revision-Date: 2015-04-16 12:38+0000\n"
|
||||||
"Last-Translator: Vanessa <vanessa.gil@artica.es>\n"
|
"Last-Translator: Carlos Moreno <carlos.moreno@artica.es>\n"
|
||||||
"Language-Team: Español; Castellano <>\n"
|
"Language-Team: Español; Castellano <>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Launchpad-Export-Date: 2015-04-15 09:56+0000\n"
|
"X-Launchpad-Export-Date: 2015-04-20 12:08+0000\n"
|
||||||
"X-Generator: Launchpad (build 17428)\n"
|
"X-Generator: Launchpad (build 17430)\n"
|
||||||
"Language: \n"
|
"Language: \n"
|
||||||
|
|
||||||
#: ../../general/links_menu.php:20 ../../godmode/menu.php:242
|
#: ../../general/links_menu.php:20 ../../godmode/menu.php:242
|
||||||
@ -6894,27 +6894,27 @@ msgstr "Gestión de informes"
|
|||||||
|
|
||||||
#: ../../godmode/users/profile_list.php:321
|
#: ../../godmode/users/profile_list.php:321
|
||||||
msgid "Network maps reading"
|
msgid "Network maps reading"
|
||||||
msgstr ""
|
msgstr "Lectura de mapas de red"
|
||||||
|
|
||||||
#: ../../godmode/users/profile_list.php:322
|
#: ../../godmode/users/profile_list.php:322
|
||||||
msgid "Network maps writing"
|
msgid "Network maps writing"
|
||||||
msgstr ""
|
msgstr "Escritura de mapas de red"
|
||||||
|
|
||||||
#: ../../godmode/users/profile_list.php:323
|
#: ../../godmode/users/profile_list.php:323
|
||||||
msgid "Network maps management"
|
msgid "Network maps management"
|
||||||
msgstr ""
|
msgstr "Gestión de mapas de red"
|
||||||
|
|
||||||
#: ../../godmode/users/profile_list.php:324
|
#: ../../godmode/users/profile_list.php:324
|
||||||
msgid "Visual console reading"
|
msgid "Visual console reading"
|
||||||
msgstr ""
|
msgstr "Lectura de consola visual"
|
||||||
|
|
||||||
#: ../../godmode/users/profile_list.php:325
|
#: ../../godmode/users/profile_list.php:325
|
||||||
msgid "Visual console writing"
|
msgid "Visual console writing"
|
||||||
msgstr ""
|
msgstr "Escritura de consola visual"
|
||||||
|
|
||||||
#: ../../godmode/users/profile_list.php:326
|
#: ../../godmode/users/profile_list.php:326
|
||||||
msgid "Visual console management"
|
msgid "Visual console management"
|
||||||
msgstr ""
|
msgstr "Gestión de consola visual"
|
||||||
|
|
||||||
#: ../../godmode/users/profile_list.php:327
|
#: ../../godmode/users/profile_list.php:327
|
||||||
#: ../../enterprise/extensions/check_acls.php:60
|
#: ../../enterprise/extensions/check_acls.php:60
|
||||||
@ -6996,7 +6996,7 @@ msgstr "Gestionar usuarios"
|
|||||||
|
|
||||||
#: ../../godmode/users/configure_profile.php:291
|
#: ../../godmode/users/configure_profile.php:291
|
||||||
msgid "Manage database"
|
msgid "Manage database"
|
||||||
msgstr ""
|
msgstr "Gestión de la base de datos"
|
||||||
|
|
||||||
#: ../../godmode/users/configure_profile.php:297 ../../operation/menu.php:264
|
#: ../../godmode/users/configure_profile.php:297 ../../operation/menu.php:264
|
||||||
#: ../../enterprise/godmode/reporting/graph_template_editor.php:217
|
#: ../../enterprise/godmode/reporting/graph_template_editor.php:217
|
||||||
@ -7024,15 +7024,15 @@ msgstr "Gestionar informes"
|
|||||||
|
|
||||||
#: ../../godmode/users/configure_profile.php:325
|
#: ../../godmode/users/configure_profile.php:325
|
||||||
msgid "View network maps"
|
msgid "View network maps"
|
||||||
msgstr ""
|
msgstr "Ver mapas de red"
|
||||||
|
|
||||||
#: ../../godmode/users/configure_profile.php:329
|
#: ../../godmode/users/configure_profile.php:329
|
||||||
msgid "Edit network maps"
|
msgid "Edit network maps"
|
||||||
msgstr ""
|
msgstr "Editar mapas de red"
|
||||||
|
|
||||||
#: ../../godmode/users/configure_profile.php:333
|
#: ../../godmode/users/configure_profile.php:333
|
||||||
msgid "Manage network maps"
|
msgid "Manage network maps"
|
||||||
msgstr ""
|
msgstr "Gestionar mapas de red"
|
||||||
|
|
||||||
#: ../../godmode/users/configure_profile.php:339
|
#: ../../godmode/users/configure_profile.php:339
|
||||||
#: ../../include/functions_menu.php:443
|
#: ../../include/functions_menu.php:443
|
||||||
@ -7041,7 +7041,7 @@ msgstr "Ver consola visual"
|
|||||||
|
|
||||||
#: ../../godmode/users/configure_profile.php:343
|
#: ../../godmode/users/configure_profile.php:343
|
||||||
msgid "Edit visual console"
|
msgid "Edit visual console"
|
||||||
msgstr ""
|
msgstr "Editar consola visual"
|
||||||
|
|
||||||
#: ../../godmode/users/configure_profile.php:347
|
#: ../../godmode/users/configure_profile.php:347
|
||||||
#: ../../include/functions_menu.php:471
|
#: ../../include/functions_menu.php:471
|
||||||
@ -7230,6 +7230,8 @@ msgid ""
|
|||||||
"Strict ACL is not recommended for admin users because performance could be "
|
"Strict ACL is not recommended for admin users because performance could be "
|
||||||
"affected."
|
"affected."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"ACL Estricto no está recomendado para usuarios admin porque el rendimiento "
|
||||||
|
"podría verse afectado."
|
||||||
|
|
||||||
#: ../../godmode/users/configure_user.php:300
|
#: ../../godmode/users/configure_user.php:300
|
||||||
#: ../../godmode/users/configure_user.php:310
|
#: ../../godmode/users/configure_user.php:310
|
||||||
@ -7257,6 +7259,8 @@ msgstr "Las contraseñas no coinciden"
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Strict ACL is not recommended for this user. Performance could be affected."
|
"Strict ACL is not recommended for this user. Performance could be affected."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"ACL Estricto no está recomendado para este usuario. El rendimiento podría "
|
||||||
|
"verse afectado"
|
||||||
|
|
||||||
#: ../../godmode/users/configure_user.php:395
|
#: ../../godmode/users/configure_user.php:395
|
||||||
msgid "Profile added successfully"
|
msgid "Profile added successfully"
|
||||||
@ -9199,7 +9203,7 @@ msgstr "Ninguna categoría encontrada"
|
|||||||
|
|
||||||
#: ../../godmode/menu.php:28
|
#: ../../godmode/menu.php:28
|
||||||
msgid "Resources"
|
msgid "Resources"
|
||||||
msgstr ""
|
msgstr "Recursos"
|
||||||
|
|
||||||
#: ../../godmode/menu.php:34
|
#: ../../godmode/menu.php:34
|
||||||
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:200
|
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:200
|
||||||
@ -9339,7 +9343,7 @@ msgstr "Configuración"
|
|||||||
|
|
||||||
#: ../../godmode/menu.php:193 ../../godmode/menu.php:196
|
#: ../../godmode/menu.php:193 ../../godmode/menu.php:196
|
||||||
msgid "General Setup"
|
msgid "General Setup"
|
||||||
msgstr ""
|
msgstr "Configuracion general"
|
||||||
|
|
||||||
#: ../../godmode/menu.php:204 ../../godmode/setup/setup.php:81
|
#: ../../godmode/menu.php:204 ../../godmode/setup/setup.php:81
|
||||||
#: ../../godmode/setup/setup.php:111
|
#: ../../godmode/setup/setup.php:111
|
||||||
@ -9384,7 +9388,7 @@ msgstr "Licencia"
|
|||||||
|
|
||||||
#: ../../godmode/menu.php:235
|
#: ../../godmode/menu.php:235
|
||||||
msgid "Admin tools"
|
msgid "Admin tools"
|
||||||
msgstr ""
|
msgstr "Herramientas administrativas"
|
||||||
|
|
||||||
#: ../../godmode/menu.php:241
|
#: ../../godmode/menu.php:241
|
||||||
msgid "System audit log"
|
msgid "System audit log"
|
||||||
@ -10000,7 +10004,7 @@ msgstr "La fecha de fin debe ser mayor que la fecha de inicio"
|
|||||||
|
|
||||||
#: ../../godmode/agentes/planned_downtime.editor.php:163
|
#: ../../godmode/agentes/planned_downtime.editor.php:163
|
||||||
msgid "The end date must be higher than the current time"
|
msgid "The end date must be higher than the current time"
|
||||||
msgstr ""
|
msgstr "La fecha fin debería ser posterior a la fecha actual"
|
||||||
|
|
||||||
#: ../../godmode/agentes/planned_downtime.editor.php:168
|
#: ../../godmode/agentes/planned_downtime.editor.php:168
|
||||||
#: ../../godmode/agentes/planned_downtime.editor.php:438
|
#: ../../godmode/agentes/planned_downtime.editor.php:438
|
||||||
@ -16347,7 +16351,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../operation/users/user_edit.php:674
|
#: ../../operation/users/user_edit.php:674
|
||||||
msgid "Deactivate"
|
msgid "Deactivate"
|
||||||
msgstr ""
|
msgstr "Desactivado"
|
||||||
|
|
||||||
#: ../../operation/users/user_edit.php:706
|
#: ../../operation/users/user_edit.php:706
|
||||||
msgid "The double autentication was deactivated successfully"
|
msgid "The double autentication was deactivated successfully"
|
||||||
@ -16541,7 +16545,7 @@ msgstr "Monitorización"
|
|||||||
|
|
||||||
#: ../../operation/menu.php:37
|
#: ../../operation/menu.php:37
|
||||||
msgid "Views"
|
msgid "Views"
|
||||||
msgstr ""
|
msgstr "Vistas"
|
||||||
|
|
||||||
#: ../../operation/menu.php:50 ../../operation/tree.php:87
|
#: ../../operation/menu.php:50 ../../operation/tree.php:87
|
||||||
#: ../../enterprise/meta/general/main_header.php:82
|
#: ../../enterprise/meta/general/main_header.php:82
|
||||||
@ -16583,7 +16587,7 @@ msgstr "Generador de traps SNMP"
|
|||||||
|
|
||||||
#: ../../operation/menu.php:105
|
#: ../../operation/menu.php:105
|
||||||
msgid "Topology maps"
|
msgid "Topology maps"
|
||||||
msgstr ""
|
msgstr "Mapas topológicos"
|
||||||
|
|
||||||
#: ../../operation/menu.php:114
|
#: ../../operation/menu.php:114
|
||||||
#: ../../operation/agentes/networkmap.groups.php:132
|
#: ../../operation/agentes/networkmap.groups.php:132
|
||||||
@ -16639,7 +16643,7 @@ msgstr "Mensaje nuevo"
|
|||||||
|
|
||||||
#: ../../operation/menu.php:369
|
#: ../../operation/menu.php:369
|
||||||
msgid "Tools"
|
msgid "Tools"
|
||||||
msgstr ""
|
msgstr "Herramientas"
|
||||||
|
|
||||||
#: ../../operation/menu.php:375 ../../operation/agentes/exportdata.php:36
|
#: ../../operation/menu.php:375 ../../operation/agentes/exportdata.php:36
|
||||||
msgid "Export data"
|
msgid "Export data"
|
||||||
@ -16752,23 +16756,23 @@ msgstr "Filtro de control de eventos"
|
|||||||
|
|
||||||
#: ../../operation/events/events_list.php:675
|
#: ../../operation/events/events_list.php:675
|
||||||
msgid "Error creating filter."
|
msgid "Error creating filter."
|
||||||
msgstr ""
|
msgstr "Error creando filtro."
|
||||||
|
|
||||||
#: ../../operation/events/events_list.php:676
|
#: ../../operation/events/events_list.php:676
|
||||||
msgid "Error creating filter is duplicated."
|
msgid "Error creating filter is duplicated."
|
||||||
msgstr ""
|
msgstr "Error creando filtro al estar duplicado."
|
||||||
|
|
||||||
#: ../../operation/events/events_list.php:677
|
#: ../../operation/events/events_list.php:677
|
||||||
msgid "Filter created."
|
msgid "Filter created."
|
||||||
msgstr ""
|
msgstr "Filtro creado."
|
||||||
|
|
||||||
#: ../../operation/events/events_list.php:679
|
#: ../../operation/events/events_list.php:679
|
||||||
msgid "Filter updated."
|
msgid "Filter updated."
|
||||||
msgstr ""
|
msgstr "Filtro actualizado."
|
||||||
|
|
||||||
#: ../../operation/events/events_list.php:680
|
#: ../../operation/events/events_list.php:680
|
||||||
msgid "Error updating filter."
|
msgid "Error updating filter."
|
||||||
msgstr ""
|
msgstr "Error actualizando filtro."
|
||||||
|
|
||||||
#: ../../operation/events/events_list.php:990
|
#: ../../operation/events/events_list.php:990
|
||||||
msgid "Filter name cannot be left blank"
|
msgid "Filter name cannot be left blank"
|
||||||
@ -17108,7 +17112,7 @@ msgstr "Políticas"
|
|||||||
#: ../../operation/tree.php:88
|
#: ../../operation/tree.php:88
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Sort the agents by %s"
|
msgid "Sort the agents by %s"
|
||||||
msgstr ""
|
msgstr "Ordenar los agentes por %s"
|
||||||
|
|
||||||
#: ../../operation/tree.php:91
|
#: ../../operation/tree.php:91
|
||||||
msgid "tags"
|
msgid "tags"
|
||||||
@ -17148,7 +17152,7 @@ msgstr "Buscar módulo"
|
|||||||
|
|
||||||
#: ../../operation/tree.php:193
|
#: ../../operation/tree.php:193
|
||||||
msgid "Tree search"
|
msgid "Tree search"
|
||||||
msgstr ""
|
msgstr "Búsqueda de árbol"
|
||||||
|
|
||||||
#: ../../operation/tree.php:281
|
#: ../../operation/tree.php:281
|
||||||
#: ../../enterprise/include/functions_reporting_csv.php:775
|
#: ../../enterprise/include/functions_reporting_csv.php:775
|
||||||
@ -17310,7 +17314,7 @@ msgstr "Gestionar"
|
|||||||
|
|
||||||
#: ../../operation/agentes/ver_agente.php:887
|
#: ../../operation/agentes/ver_agente.php:887
|
||||||
msgid "Log Viewer"
|
msgid "Log Viewer"
|
||||||
msgstr ""
|
msgstr "Visor de sucesos"
|
||||||
|
|
||||||
#: ../../operation/agentes/ver_agente.php:979
|
#: ../../operation/agentes/ver_agente.php:979
|
||||||
#: ../../enterprise/include/functions_reporting_pdf.php:4092
|
#: ../../enterprise/include/functions_reporting_pdf.php:4092
|
||||||
@ -17322,7 +17326,7 @@ msgstr "Últimos datos"
|
|||||||
#: ../../operation/agentes/interface_traffic_graph_win.php:48
|
#: ../../operation/agentes/interface_traffic_graph_win.php:48
|
||||||
#: ../../operation/agentes/stat_win.php:44
|
#: ../../operation/agentes/stat_win.php:44
|
||||||
msgid "There was a problem connecting with the node"
|
msgid "There was a problem connecting with the node"
|
||||||
msgstr ""
|
msgstr "Hubo un problema conectando con el nodo"
|
||||||
|
|
||||||
#: ../../operation/agentes/interface_traffic_graph_win.php:66
|
#: ../../operation/agentes/interface_traffic_graph_win.php:66
|
||||||
msgid "In"
|
msgid "In"
|
||||||
@ -17641,7 +17645,7 @@ msgstr "No se pudo guardar el mapa de red"
|
|||||||
|
|
||||||
#: ../../operation/agentes/networkmap.php:249
|
#: ../../operation/agentes/networkmap.php:249
|
||||||
msgid "There was an error loading the network map"
|
msgid "There was an error loading the network map"
|
||||||
msgstr ""
|
msgstr "Hubo un error cargando el mapa de red"
|
||||||
|
|
||||||
#: ../../operation/agentes/networkmap.php:301
|
#: ../../operation/agentes/networkmap.php:301
|
||||||
#: ../../operation/snmpconsole/snmp_view.php:74
|
#: ../../operation/snmpconsole/snmp_view.php:74
|
||||||
@ -17924,7 +17928,7 @@ msgstr "Refrescar datos"
|
|||||||
|
|
||||||
#: ../../operation/agentes/tactical.php:175
|
#: ../../operation/agentes/tactical.php:175
|
||||||
msgid "Report of State"
|
msgid "Report of State"
|
||||||
msgstr ""
|
msgstr "Informe de Estado"
|
||||||
|
|
||||||
#: ../../operation/agentes/tactical.php:233
|
#: ../../operation/agentes/tactical.php:233
|
||||||
#: ../../include/functions_events.php:864
|
#: ../../include/functions_events.php:864
|
||||||
@ -18441,7 +18445,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../index.php:228 ../../enterprise/meta/index.php:247
|
#: ../../index.php:228 ../../enterprise/meta/index.php:247
|
||||||
msgid "The code shouldn't be empty"
|
msgid "The code shouldn't be empty"
|
||||||
msgstr ""
|
msgstr "El código no debería estar vacío"
|
||||||
|
|
||||||
#: ../../index.php:240 ../../enterprise/meta/index.php:259
|
#: ../../index.php:240 ../../enterprise/meta/index.php:259
|
||||||
msgid "Expired login"
|
msgid "Expired login"
|
||||||
@ -19188,11 +19192,11 @@ msgstr "Borrado masivo de políticas de alertas"
|
|||||||
|
|
||||||
#: ../../enterprise/godmode/massive/massive_operations.php:80
|
#: ../../enterprise/godmode/massive/massive_operations.php:80
|
||||||
msgid "Masive tags module policy edition"
|
msgid "Masive tags module policy edition"
|
||||||
msgstr ""
|
msgstr "Edición masiva de de módulos por política"
|
||||||
|
|
||||||
#: ../../enterprise/godmode/massive/massive_operations.php:81
|
#: ../../enterprise/godmode/massive/massive_operations.php:81
|
||||||
msgid "Masive modules policy tags edition"
|
msgid "Masive modules policy tags edition"
|
||||||
msgstr ""
|
msgstr "Edición masiva de etiquetas por política"
|
||||||
|
|
||||||
#: ../../enterprise/godmode/massive/massive_operations.php:89
|
#: ../../enterprise/godmode/massive/massive_operations.php:89
|
||||||
msgid "Massive alert SNMP deletion"
|
msgid "Massive alert SNMP deletion"
|
||||||
@ -19226,11 +19230,11 @@ msgstr "Etiquetas usadas"
|
|||||||
|
|
||||||
#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:101
|
#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:101
|
||||||
msgid "Modules unused"
|
msgid "Modules unused"
|
||||||
msgstr ""
|
msgstr "Módulos sin usar"
|
||||||
|
|
||||||
#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117
|
#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117
|
||||||
msgid "Modules used"
|
msgid "Modules used"
|
||||||
msgstr ""
|
msgstr "Módulos usados"
|
||||||
|
|
||||||
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:165
|
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:165
|
||||||
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:216
|
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:216
|
||||||
@ -19552,7 +19556,7 @@ msgstr "Colector de Logs"
|
|||||||
|
|
||||||
#: ../../enterprise/godmode/menu.php:118
|
#: ../../enterprise/godmode/menu.php:118
|
||||||
msgid "Password policy"
|
msgid "Password policy"
|
||||||
msgstr ""
|
msgstr "Política de contraseñas"
|
||||||
|
|
||||||
#: ../../enterprise/godmode/agentes/collection_manager.php:37
|
#: ../../enterprise/godmode/agentes/collection_manager.php:37
|
||||||
#: ../../enterprise/operation/agentes/collection_view.php:47
|
#: ../../enterprise/operation/agentes/collection_view.php:47
|
||||||
@ -21640,7 +21644,7 @@ msgstr "Fecha de inicio"
|
|||||||
|
|
||||||
#: ../../enterprise/operation/log/log_viewer.php:334
|
#: ../../enterprise/operation/log/log_viewer.php:334
|
||||||
msgid "The start date cannot be greater than the end date"
|
msgid "The start date cannot be greater than the end date"
|
||||||
msgstr ""
|
msgstr "La fecha de inicio no puede ser posterior a la fecha fin"
|
||||||
|
|
||||||
#: ../../enterprise/operation/inventory/inventory.php:262
|
#: ../../enterprise/operation/inventory/inventory.php:262
|
||||||
msgid "Export this list to CSV"
|
msgid "Export this list to CSV"
|
||||||
@ -21747,7 +21751,7 @@ msgstr "Error al procesar mapa"
|
|||||||
|
|
||||||
#: ../../enterprise/operation/agentes/agent_inventory.php:56
|
#: ../../enterprise/operation/agentes/agent_inventory.php:56
|
||||||
msgid "This agent has not modules inventory"
|
msgid "This agent has not modules inventory"
|
||||||
msgstr ""
|
msgstr "Este agente no tiene módulos de inventario"
|
||||||
|
|
||||||
#: ../../enterprise/operation/agentes/agent_inventory.php:159
|
#: ../../enterprise/operation/agentes/agent_inventory.php:159
|
||||||
#: ../../enterprise/operation/agentes/agent_inventory.php:160
|
#: ../../enterprise/operation/agentes/agent_inventory.php:160
|
||||||
@ -22090,7 +22094,7 @@ msgstr "Vista de grupo"
|
|||||||
|
|
||||||
#: ../../enterprise/meta/monitoring/group_view.php:74
|
#: ../../enterprise/meta/monitoring/group_view.php:74
|
||||||
msgid "Summary by status"
|
msgid "Summary by status"
|
||||||
msgstr ""
|
msgstr "Resumen por estado"
|
||||||
|
|
||||||
#: ../../enterprise/meta/monitoring/group_view.php:78
|
#: ../../enterprise/meta/monitoring/group_view.php:78
|
||||||
msgid "% Monitors Critical"
|
msgid "% Monitors Critical"
|
||||||
@ -22106,7 +22110,7 @@ msgstr "% Monitores Ok"
|
|||||||
|
|
||||||
#: ../../enterprise/meta/monitoring/group_view.php:81
|
#: ../../enterprise/meta/monitoring/group_view.php:81
|
||||||
msgid "% Agents Unknown"
|
msgid "% Agents Unknown"
|
||||||
msgstr ""
|
msgstr "% Agentes Desconocidos"
|
||||||
|
|
||||||
#: ../../enterprise/meta/monitoring/group_view.php:101
|
#: ../../enterprise/meta/monitoring/group_view.php:101
|
||||||
msgid "Group or Tag"
|
msgid "Group or Tag"
|
||||||
@ -23002,7 +23006,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../enterprise/meta/include/functions_wizard_meta.php:2475
|
#: ../../enterprise/meta/include/functions_wizard_meta.php:2475
|
||||||
msgid "Module successfully added."
|
msgid "Module successfully added."
|
||||||
msgstr ""
|
msgstr "Módulo añadido con éxito."
|
||||||
|
|
||||||
#: ../../enterprise/meta/include/functions_wizard_meta.php:2547
|
#: ../../enterprise/meta/include/functions_wizard_meta.php:2547
|
||||||
#: ../../enterprise/meta/include/functions_wizard_meta.php:2636
|
#: ../../enterprise/meta/include/functions_wizard_meta.php:2636
|
||||||
@ -23047,7 +23051,7 @@ msgstr "Guardar en grupo"
|
|||||||
|
|
||||||
#: ../../enterprise/meta/include/functions_networkmap_meta.php:512
|
#: ../../enterprise/meta/include/functions_networkmap_meta.php:512
|
||||||
msgid "Filter by tag"
|
msgid "Filter by tag"
|
||||||
msgstr "Filtrar por tag"
|
msgstr "Filtrar por etiqueta"
|
||||||
|
|
||||||
#: ../../enterprise/meta/include/functions_networkmap_meta.php:518
|
#: ../../enterprise/meta/include/functions_networkmap_meta.php:518
|
||||||
msgid "Filter by agents"
|
msgid "Filter by agents"
|
||||||
@ -25554,7 +25558,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../enterprise/extensions/check_acls.php:197
|
#: ../../enterprise/extensions/check_acls.php:197
|
||||||
msgid "Only admin users can see this section."
|
msgid "Only admin users can see this section."
|
||||||
msgstr ""
|
msgstr "Solo los usuarios administradores pueden ver esta sección."
|
||||||
|
|
||||||
#: ../../enterprise/extensions/check_acls.php:201
|
#: ../../enterprise/extensions/check_acls.php:201
|
||||||
msgid "Check ACL"
|
msgid "Check ACL"
|
||||||
@ -27596,7 +27600,7 @@ msgstr "Borrar elemento"
|
|||||||
|
|
||||||
#: ../../include/functions_visual_map_editor.php:556
|
#: ../../include/functions_visual_map_editor.php:556
|
||||||
msgid "Copy item"
|
msgid "Copy item"
|
||||||
msgstr ""
|
msgstr "Copiar elemento"
|
||||||
|
|
||||||
#: ../../include/functions_visual_map_editor.php:584
|
#: ../../include/functions_visual_map_editor.php:584
|
||||||
msgid "No image or name defined."
|
msgid "No image or name defined."
|
||||||
@ -27735,7 +27739,7 @@ msgstr "Respuesta personalizada"
|
|||||||
|
|
||||||
#: ../../include/functions_events.php:1931
|
#: ../../include/functions_events.php:1931
|
||||||
msgid "There was an error connecting to the node"
|
msgid "There was an error connecting to the node"
|
||||||
msgstr ""
|
msgstr "Hubo un error conectando al nodo"
|
||||||
|
|
||||||
#: ../../include/functions_events.php:1970
|
#: ../../include/functions_events.php:1970
|
||||||
msgid "Agent details"
|
msgid "Agent details"
|
||||||
@ -28774,7 +28778,7 @@ msgstr "%d Agentes desconocidos"
|
|||||||
#: ../../include/functions_reporting.php:7853
|
#: ../../include/functions_reporting.php:7853
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%d not init agents"
|
msgid "%d not init agents"
|
||||||
msgstr ""
|
msgstr "%d agentes no iniciados"
|
||||||
|
|
||||||
#: ../../include/functions_reporting.php:7975
|
#: ../../include/functions_reporting.php:7975
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -30291,11 +30295,11 @@ msgstr "Configuración BD"
|
|||||||
|
|
||||||
#: ../../extensions/db_status.php:67
|
#: ../../extensions/db_status.php:67
|
||||||
msgid "DB User with privileges"
|
msgid "DB User with privileges"
|
||||||
msgstr ""
|
msgstr "Usuario de BD con privilegios"
|
||||||
|
|
||||||
#: ../../extensions/db_status.php:69
|
#: ../../extensions/db_status.php:69
|
||||||
msgid "DB Password for this user"
|
msgid "DB Password for this user"
|
||||||
msgstr ""
|
msgstr "Password BD para este usuario"
|
||||||
|
|
||||||
#: ../../extensions/db_status.php:73
|
#: ../../extensions/db_status.php:73
|
||||||
msgid "DB Hostname"
|
msgid "DB Hostname"
|
||||||
@ -31646,9 +31650,6 @@ msgstr "Logs sistema"
|
|||||||
#~ msgid "No items defined"
|
#~ msgid "No items defined"
|
||||||
#~ msgstr "No se han definido elementos"
|
#~ msgstr "No se han definido elementos"
|
||||||
|
|
||||||
#~ msgid "Agent unknown"
|
|
||||||
#~ msgstr "Agente desconocido"
|
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "Red cell when the module group and agent have at least one module in "
|
#~ "Red cell when the module group and agent have at least one module in "
|
||||||
#~ "critical state and the others in any state."
|
#~ "critical state and the others in any state."
|
||||||
@ -31679,27 +31680,9 @@ msgstr "Logs sistema"
|
|||||||
#~ msgid "hour"
|
#~ msgid "hour"
|
||||||
#~ msgstr "hora"
|
#~ msgstr "hora"
|
||||||
|
|
||||||
#~ msgid "There are no defined maps in this view"
|
|
||||||
#~ msgstr "No hay mapas definidos en esta vista"
|
|
||||||
|
|
||||||
#~ msgid "Add map"
|
|
||||||
#~ msgstr "Añadir mapa"
|
|
||||||
|
|
||||||
#~ msgid "No selected"
|
|
||||||
#~ msgstr "No seleccionado"
|
|
||||||
|
|
||||||
#~ msgid "Manage custom fields"
|
|
||||||
#~ msgstr "Gestionar campos personalizados"
|
|
||||||
|
|
||||||
#~ msgid "Manage recon script"
|
|
||||||
#~ msgstr "Gestionar script recon"
|
|
||||||
|
|
||||||
#~ msgid "Manage SNMP console"
|
#~ msgid "Manage SNMP console"
|
||||||
#~ msgstr "Consola SNMP"
|
#~ msgstr "Consola SNMP"
|
||||||
|
|
||||||
#~ msgid "Manage tags"
|
|
||||||
#~ msgstr "Gestionar etiquetas"
|
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "Pandora FMS Sanity tool is used to remove bad database structure data, "
|
#~ "Pandora FMS Sanity tool is used to remove bad database structure data, "
|
||||||
#~ "created modules with missing status, or modules that cannot be initialized "
|
#~ "created modules with missing status, or modules that cannot be initialized "
|
||||||
@ -31721,26 +31704,5 @@ msgstr "Logs sistema"
|
|||||||
#~ msgid "This server has no recon tasks assigned"
|
#~ msgid "This server has no recon tasks assigned"
|
||||||
#~ msgstr "Este servidor no tiene ninguna tarea de reconocimiento asignada"
|
#~ msgstr "Este servidor no tiene ninguna tarea de reconocimiento asignada"
|
||||||
|
|
||||||
#~ msgid "Manage monitoring"
|
|
||||||
#~ msgstr "Gestionar la monitorización"
|
|
||||||
|
|
||||||
#~ msgid "ACL Setup"
|
|
||||||
#~ msgstr "Configuración de ACL"
|
|
||||||
|
|
||||||
#~ msgid "Dictionary"
|
|
||||||
#~ msgstr "Diccionario"
|
|
||||||
|
|
||||||
#~ msgid "Configuration could not be saved"
|
|
||||||
#~ msgstr "La configuración no se puede guardar"
|
|
||||||
|
|
||||||
#~ msgid "Configuration saved"
|
|
||||||
#~ msgstr "Configuración guardada"
|
|
||||||
|
|
||||||
#~ msgid "Manage plugins"
|
#~ msgid "Manage plugins"
|
||||||
#~ msgstr "Gestionar plugins"
|
#~ msgstr "Gestionar plugins"
|
||||||
|
|
||||||
#~ msgid "Network View"
|
|
||||||
#~ msgstr "Vista de red"
|
|
||||||
|
|
||||||
#~ msgid "Manage categories"
|
|
||||||
#~ msgstr "Gestionar categorías"
|
|
||||||
|
@ -63,7 +63,7 @@
|
|||||||
<div style='height: 10px'>
|
<div style='height: 10px'>
|
||||||
<?php
|
<?php
|
||||||
$version = '6.0dev';
|
$version = '6.0dev';
|
||||||
$build = '150420';
|
$build = '150421';
|
||||||
$banner = "v$version Build $build";
|
$banner = "v$version Build $build";
|
||||||
|
|
||||||
error_reporting(0);
|
error_reporting(0);
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
if (! isset($_SESSION['id_usuario'])) {
|
if (! isset($_SESSION['id_usuario'])) {
|
||||||
session_start();
|
session_start();
|
||||||
session_write_close();
|
//session_write_close();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Global & session management
|
// Global & session management
|
||||||
@ -55,7 +55,8 @@ if (file_exists ('../../include/languages/'.$user_language.'.mo')) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
echo '<link rel="stylesheet" href="../../include/styles/pandora.css" type="text/css"/>';
|
echo '<link rel="stylesheet" href="../../include/styles/pandora.css" type="text/css"/>';
|
||||||
$label = str_replace('%3D', '=', get_parameter('label', ''));
|
|
||||||
|
$label = get_parameter('label');
|
||||||
$label = base64_decode($label);
|
$label = base64_decode($label);
|
||||||
$id = get_parameter('id');
|
$id = get_parameter('id');
|
||||||
//$label = rawurldecode(urldecode(base64_decode(get_parameter('label', ''))));
|
//$label = rawurldecode(urldecode(base64_decode(get_parameter('label', ''))));
|
||||||
|
@ -917,6 +917,7 @@ if(defined('METACONSOLE')){
|
|||||||
$table->width = "100%";
|
$table->width = "100%";
|
||||||
$table->cellpadding = '0';
|
$table->cellpadding = '0';
|
||||||
$table->cellspacing = '0';
|
$table->cellspacing = '0';
|
||||||
|
$table->class = "databox";
|
||||||
}
|
}
|
||||||
$table->head = array ();
|
$table->head = array ();
|
||||||
$table->data = array ();
|
$table->data = array ();
|
||||||
@ -1203,7 +1204,7 @@ foreach ($result as $row) {
|
|||||||
"type" => $graph_type,
|
"type" => $graph_type,
|
||||||
"period" => SECONDS_1DAY,
|
"period" => SECONDS_1DAY,
|
||||||
"id" => $row["id_agente_modulo"],
|
"id" => $row["id_agente_modulo"],
|
||||||
"label" => rawurlencode(urlencode(base64_encode($row["module_name"]))),
|
"label" => base64_encode($row["module_name"]),
|
||||||
"refresh" => SECONDS_10MINUTES
|
"refresh" => SECONDS_10MINUTES
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -272,6 +272,7 @@ enterprise_hook('close_meta_frame');
|
|||||||
recipient: $("div#tree-controller-recipient"),
|
recipient: $("div#tree-controller-recipient"),
|
||||||
detailRecipient: $("div#tree-controller-detail-recipient"),
|
detailRecipient: $("div#tree-controller-detail-recipient"),
|
||||||
page: parameters['page'],
|
page: parameters['page'],
|
||||||
|
emptyMessage: "<?php echo __('No data found'); ?>",
|
||||||
tree: data.tree,
|
tree: data.tree,
|
||||||
baseURL: "<?php echo ui_get_full_url(false, false, false, defined('METACONSOLE')); ?>",
|
baseURL: "<?php echo ui_get_full_url(false, false, false, defined('METACONSOLE')); ?>",
|
||||||
ajaxURL: "<?php echo ui_get_full_url('ajax.php', false, false, false); ?>",
|
ajaxURL: "<?php echo ui_get_full_url('ajax.php', false, false, false); ?>",
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#
|
#
|
||||||
%define name pandorafms_console
|
%define name pandorafms_console
|
||||||
%define version 6.0dev
|
%define version 6.0dev
|
||||||
%define release 150420
|
%define release 150421
|
||||||
|
|
||||||
# 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 6.0dev
|
%define version 6.0dev
|
||||||
%define release 150420
|
%define release 150421
|
||||||
%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
|
||||||
|
@ -38,7 +38,7 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES
|
|||||||
('graph_res','5'),
|
('graph_res','5'),
|
||||||
('step_compact','1'),
|
('step_compact','1'),
|
||||||
('db_scheme_version','6.0dev'),
|
('db_scheme_version','6.0dev'),
|
||||||
('db_scheme_build','PD150420'),
|
('db_scheme_build','PD150421'),
|
||||||
('show_unknown','0'),
|
('show_unknown','0'),
|
||||||
('show_lastalerts','1'),
|
('show_lastalerts','1'),
|
||||||
('style','pandora'),
|
('style','pandora'),
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
package: pandorafms-server
|
package: pandorafms-server
|
||||||
Version: 6.0dev-150420
|
Version: 6.0dev-150421
|
||||||
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="6.0dev-150420"
|
pandora_version="6.0dev-150421"
|
||||||
|
|
||||||
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 = "6.0dev";
|
my $pandora_version = "6.0dev";
|
||||||
my $pandora_build = "150420";
|
my $pandora_build = "150421";
|
||||||
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 6.0dev
|
%define version 6.0dev
|
||||||
%define release 150420
|
%define release 150421
|
||||||
|
|
||||||
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 6.0dev
|
%define version 6.0dev
|
||||||
%define release 150420
|
%define release 150421
|
||||||
|
|
||||||
Summary: Pandora FMS Server
|
Summary: Pandora FMS Server
|
||||||
Name: %{name}
|
Name: %{name}
|
||||||
|
@ -33,7 +33,7 @@ use PandoraFMS::Tools;
|
|||||||
use PandoraFMS::DB;
|
use PandoraFMS::DB;
|
||||||
|
|
||||||
# version: define current version
|
# version: define current version
|
||||||
my $version = "6.0dev PS150420";
|
my $version = "6.0dev PS150421";
|
||||||
|
|
||||||
# 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 = "6.0dev PS150420";
|
my $version = "6.0dev PS150421";
|
||||||
|
|
||||||
# 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