2010-12-22 Sergio Martin <sergio.martin@artica.es>
* util/pandora_manage.pl: Fixed codification bug in the conf modules declaration git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3681 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
78276d1c42
commit
52c58e87e4
|
@ -1,3 +1,8 @@
|
||||||
|
2010-12-22 Sergio Martin <sergio.martin@artica.es>
|
||||||
|
|
||||||
|
* util/pandora_manage.pl: Fixed codification bug in the
|
||||||
|
conf modules declaration
|
||||||
|
|
||||||
2010-12-22 Ramon Novoa <rnovoa@artica.es>
|
2010-12-22 Ramon Novoa <rnovoa@artica.es>
|
||||||
|
|
||||||
* util/pandora_recode_db.pl: Removed from repository. Not
|
* util/pandora_recode_db.pl: Removed from repository. Not
|
||||||
|
|
|
@ -1322,7 +1322,7 @@ sub pandora_manage_main ($$$) {
|
||||||
delete $module->{'id_policy'};
|
delete $module->{'id_policy'};
|
||||||
|
|
||||||
#Store the conf data
|
#Store the conf data
|
||||||
$configuration_data .= "\n\n$module->{'configuration_data'}";
|
$configuration_data .= safe_output("\n\n$module->{'configuration_data'}");
|
||||||
|
|
||||||
delete $module->{'configuration_data'};
|
delete $module->{'configuration_data'};
|
||||||
|
|
||||||
|
@ -1366,7 +1366,7 @@ sub pandora_manage_main ($$$) {
|
||||||
}
|
}
|
||||||
|
|
||||||
#Add the conf information to the agent conf file
|
#Add the conf information to the agent conf file
|
||||||
enterprise_hook('pandora_create_policy_conf_info',[$conf, $policy_name, $configuration_data,$agent_name,$dbh]);
|
enterprise_hook('pandora_create_policy_conf_info',[$conf, $policy_name, $configuration_data, $agent_name, $dbh]);
|
||||||
|
|
||||||
# Flag applyed the agent
|
# Flag applyed the agent
|
||||||
enterprise_hook('pandora_apply_agent_policy',[$policy_id, $id_agent, $dbh]);
|
enterprise_hook('pandora_apply_agent_policy',[$policy_id, $id_agent, $dbh]);
|
||||||
|
|
Loading…
Reference in New Issue