summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ad8dd6f)
raw | patch | inline | side by side (parent: ad8dd6f)
author | janw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 11 Sep 2008 10:02:31 +0000 (10:02 +0000) | ||
committer | janw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 11 Sep 2008 10:02:31 +0000 (10:02 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@12418 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-si/server/events/gosaTriggered.pm | patch | blob | history |
index 3ffdf5719ea8a549be732183929cb9211169305f..e85ae51206580c129b7f4f7034fae34ac3b03842 100644 (file)
# 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 {