From b5820fc20c293cd92f9e75ee42016939bec30e2e Mon Sep 17 00:00:00 2001 From: slerena Date: Fri, 13 Jul 2007 11:08:59 +0000 Subject: [PATCH] 2007-07-13 Sancho Lerena * bin/pandora_recon.pl: Another patch, to create records in tagente_estado using different values for "estado" field, (100 for non-monitors, 0 for monitors), in the same way console does. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@561 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_server/ChangeLog | 4 ++++ pandora_server/bin/pandora_recon.pl | 9 ++++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/pandora_server/ChangeLog b/pandora_server/ChangeLog index 2869a7d9db..f8cdc73f17 100644 --- a/pandora_server/ChangeLog +++ b/pandora_server/ChangeLog @@ -1,5 +1,9 @@ 2007-07-13 Sancho Lerena + * bin/pandora_recon.pl: Another patch, to create records in + tagente_estado using different values for "estado" field, (100 for + non-monitors, 0 for monitors), in the same way console does. + * bin/pandora_recon.pl: Testing changes for two items: (a) Bug detected in forking startup (-D). (b) Bug detected due creation of modules without inserting record in tagente_estado table. diff --git a/pandora_server/bin/pandora_recon.pl b/pandora_server/bin/pandora_recon.pl index 4d082a05e0..61ee8823ba 100755 --- a/pandora_server/bin/pandora_recon.pl +++ b/pandora_server/bin/pandora_recon.pl @@ -418,7 +418,14 @@ sub pandora_task_create_agentmodules { $dbh->do($query_sql3); my $last_id_agente_modulo = $dbh->{'mysql_insertid'}; logger($pa_config,"Recon Server: Creating module $name for agent $ip_adress",3); - my $query_sql4 = "INSERT INTO tagente_estado (id_agente_modulo, datos, timestamp, cambio, estado, id_agente, last_try, utimestamp, current_interval, running_by) VALUES ($last_id_agente_modulo, '', '0000-00-00 00:00:00', 0, 0, $agent_id, '0000-00-00 00:00:00', 0, $interval, 0)"; + my $query_sql4; + if (($type == 2) || ($type == 6) || ($type == 9) || ($type == 12) || ($type == 18)) { + # for monitors + $query_sql4 = "INSERT INTO tagente_estado (id_agente_modulo, datos, timestamp, cambio, estado, id_agente, last_try, utimestamp, current_interval, running_by) VALUES ($last_id_agente_modulo, '', '0000-00-00 00:00:00', 0, 0, $agent_id, '0000-00-00 00:00:00', 0, $interval, 0)"; + } else { + # not monitors + $query_sql4 = "INSERT INTO tagente_estado (id_agente_modulo, datos, timestamp, cambio, estado, id_agente, last_try, utimestamp, current_interval, running_by) VALUES ($last_id_agente_modulo, '', '0000-00-00 00:00:00', 0, 100, $agent_id, '0000-00-00 00:00:00', 0, $interval, 0)"; + } $dbh->do($query_sql4); } $exec_sql2->finish();