From: janw Date: Thu, 11 Sep 2008 10:02:31 +0000 (+0000) Subject: Add new_ldap_config message before set_activated_for_installation X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=5953c2c1e2cd9971aadc8808a39d9f30422956bd;p=gosa.git Add new_ldap_config message before set_activated_for_installation git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@12418 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-si/server/events/gosaTriggered.pm b/gosa-si/server/events/gosaTriggered.pm index 3ffdf5719..e85ae5120 100644 --- a/gosa-si/server/events/gosaTriggered.pm +++ b/gosa-si/server/events/gosaTriggered.pm @@ -981,10 +981,12 @@ sub trigger_activate_new { # Set job to done $main::job_db->exec_statement("UPDATE jobs SET status = 'done' WHERE id = $jobdb_id"); - # create set_activated_for_installation message for delivery - my $out_hash = &create_xml_hash("set_activated_for_installation", $source, $target); - my $out_msg = &create_xml_string($out_hash); - my @out_msg_l = ($out_msg); + # create new_ldap_config and set_activated_for_installation messages for delivery + my $out_hash_ldap_config = &create_xml_hash("new_ldap_config", $source, $target); + my $out_msg_ldap_config = &create_xml_string($out_hash_ldap_config); + my $out_hash_activate = &create_xml_hash("set_activated_for_installation", $source, $target); + my $out_msg_activate = &create_xml_string($out_hash_activate); + my @out_msg_l = ($out_msg_ldap_config, $out_msg_activate); return @out_msg_l; } else {