2014-01-14 Sergio Martin <sergio.martin@artica.es>
* util/recon_scripts/snmpdevices.pl: Added address check to avoid create empty agents when exist agents with a secondary IP into the range for incident #459 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9318 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
9ab4eba8b2
commit
37eb4ca968
|
@ -1,3 +1,9 @@
|
|||
2014-01-14 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* util/recon_scripts/snmpdevices.pl: Added address check
|
||||
to avoid create empty agents when exist agents with a secondary
|
||||
IP into the range for incident #459
|
||||
|
||||
2014-01-09 Junichi Satoh <junichi@rworks.jp>
|
||||
|
||||
* lib/PandoraFMS/PluginServer.pm: Fixed that 'plugin_timeout' in
|
||||
|
|
|
@ -241,9 +241,17 @@ foreach $addr_item (@net_addr_list) {
|
|||
next;
|
||||
}
|
||||
|
||||
# Check if the agent exists
|
||||
my $agent_id = get_agent_id($dbh, $host_name);
|
||||
my $agent_id;
|
||||
|
||||
# Does the host already exist?
|
||||
my $agent = get_agent_from_addr ($dbh, $addr);
|
||||
if (defined ($agent)) {
|
||||
$agent_id = $agent->{'id_agente'};
|
||||
}
|
||||
else {
|
||||
$agent_id = get_agent_id($dbh, $host_name);
|
||||
}
|
||||
|
||||
# If the agent doesnt exist we create it
|
||||
if($agent_id == -1) {
|
||||
# Create a new agent
|
||||
|
|
Loading…
Reference in New Issue