Added group password support.

(cherry picked from commit a8b113a6fc)
This commit is contained in:
Ramon Novoa 2016-11-25 12:41:48 +01:00
parent 7c74340155
commit 9605122902
1 changed files with 7 additions and 0 deletions

View File

@ -351,6 +351,13 @@ sub process_xml_data ($$$$$) {
}
}
# Check the group password.
my $rc = enterprise_hook('check_group_password', [$dbh, $group_id, $data->{'group_password'}]);
if (defined($rc) && $rc != 1) {
logger($pa_config, "Agent $agent_name did not send a valid password for group id $group_id.", 10);
return;
}
my $description = '';
$description = $data->{'description'} if (defined ($data->{'description'}));