From d2f5a045830821353e9d9a953db0c57572241f79 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Mon, 11 Oct 2021 20:42:43 +0200 Subject: [PATCH] WIP NCM --- pandora_console/extras/mr/50.sql | 1 + .../extras/pandoradb_migrate_6.0_to_7.0.mysql.sql | 1 + pandora_console/pandoradb.sql | 1 + pandora_server/lib/PandoraFMS/Config.pm | 9 +++++++++ pandora_server/lib/PandoraFMS/Tools.pm | 2 ++ 5 files changed, 14 insertions(+) diff --git a/pandora_console/extras/mr/50.sql b/pandora_console/extras/mr/50.sql index 3eb449f849..bf4f649516 100644 --- a/pandora_console/extras/mr/50.sql +++ b/pandora_console/extras/mr/50.sql @@ -53,6 +53,7 @@ CREATE TABLE IF NOT EXISTS `tncm_agent` ( `updated_at` bigint(20) NOT NULL default 0, `config_backup_id` bigint(20) UNSIGNED DEFAULT NULL, `id_template` bigint(20) unsigned, + `execute_type` int(2) UNSIGNED NOT NULL default 0, `execute` int(2) UNSIGNED NOT NULL default 0, PRIMARY KEY (`id_agent`), FOREIGN KEY (`id_agent`) REFERENCES `tagente`(`id_agente`) ON UPDATE CASCADE ON DELETE CASCADE, diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql index 23b6a3eda1..4bb197557b 100644 --- a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql +++ b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql @@ -4139,6 +4139,7 @@ CREATE TABLE IF NOT EXISTS `tncm_agent` ( `updated_at` bigint(20) NOT NULL default 0, `config_backup_id` bigint(20) UNSIGNED DEFAULT NULL, `id_template` bigint(20) unsigned, + `execute_type` int(2) UNSIGNED NOT NULL default 0, `execute` int(2) UNSIGNED NOT NULL default 0, PRIMARY KEY (`id_agent`), FOREIGN KEY (`id_agent`) REFERENCES `tagente`(`id_agente`) ON UPDATE CASCADE ON DELETE CASCADE, diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index f59312485c..6b16adc433 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -4075,6 +4075,7 @@ CREATE TABLE IF NOT EXISTS `tncm_agent` ( `updated_at` bigint(20) NOT NULL default 0, `config_backup_id` bigint(20) UNSIGNED DEFAULT NULL, `id_template` bigint(20) unsigned, + `execute_type` int(2) UNSIGNED NOT NULL default 0, `execute` int(2) UNSIGNED NOT NULL default 0, PRIMARY KEY (`id_agent`), FOREIGN KEY (`id_agent`) REFERENCES `tagente`(`id_agente`) ON UPDATE CASCADE ON DELETE CASCADE, diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm index b73e60ef31..80082fbde7 100644 --- a/pandora_server/lib/PandoraFMS/Config.pm +++ b/pandora_server/lib/PandoraFMS/Config.pm @@ -562,6 +562,9 @@ sub pandora_load_config { $pa_config->{"alertserver_threads"} = 1; # 7.0 756 $pa_config->{"alertserver_warn"} = 180; # 7.0 756 + $pa_config->{'ncmserver'} = 0; # 7.0 758 + $pa_config->{'ncm_threads'} = 1; # 7.0 758 + # Check for UID0 if ($pa_config->{"quiet"} != 0){ if ($> == 0){ @@ -1278,6 +1281,12 @@ sub pandora_load_config { elsif ($parametro =~ m/^alertserver_warn\s+([0-9]*)/i) { $pa_config->{'alertserver_warn'}= clean_blank($1); } + elsif ($parametro =~ m/^ncmserver\s+([0-9]*)/i){ + $pa_config->{'ncmserver'}= clean_blank($1); + } + elsif ($parametro =~ m/^ncm_threads\s+([0-9]*)/i) { + $pa_config->{'ncm_threads'}= clean_blank($1); + } # Pandora HA extra elsif ($parametro =~ m/^ha_file\s(.*)/i) { diff --git a/pandora_server/lib/PandoraFMS/Tools.pm b/pandora_server/lib/PandoraFMS/Tools.pm index f499c39f38..59bcc0153d 100755 --- a/pandora_server/lib/PandoraFMS/Tools.pm +++ b/pandora_server/lib/PandoraFMS/Tools.pm @@ -77,6 +77,7 @@ our @EXPORT = qw( WUXSERVER PROVISIONINGSERVER MIGRATIONSERVER + NCMSERVER METACONSOLE_LICENSE OFFLINE_LICENSE DISCOVERY_HOSTDEVICES @@ -191,6 +192,7 @@ use constant SYSLOGSERVER => 18; use constant PROVISIONINGSERVER => 19; use constant MIGRATIONSERVER => 20; use constant ALERTSERVER => 21; +use constant NCMSERVER => 23; # Module status use constant MODULE_NORMAL => 0;