Added group password support.

This commit is contained in:
Ramon Novoa 2016-11-25 12:41:48 +01:00
parent 246b605076
commit a8b113a6fc
1 changed files with 7 additions and 0 deletions

View File

@ -358,6 +358,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'}));