summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 720cac0)
raw | patch | inline | side by side (parent: 720cac0)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 20 Nov 2009 10:31:24 +0000 (10:31 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 20 Nov 2009 10:31:24 +0000 (10:31 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@14830 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-si/server/events/opsi_com.pm | patch | blob | history |
index ae57cb9c28c19fbdaadffbc18027a1b2fc7e2af0..98b21712c4042a1f4a169fc1471dfb2dd19334d1 100644 (file)
"opsi_get_client_hardware",
"opsi_get_client_software",
"opsi_get_product_properties",
+ "opsi_get_full_product_host_information",
"opsi_set_product_properties",
"opsi_list_clients",
"opsi_del_client",
"opsi_modify_client",
"opsi_add_product_to_client",
"opsi_del_product_from_client",
- "opsi_createLicensePool",
- "opsi_deleteLicensePool",
- "opsi_createLicense",
- "opsi_assignSoftwareLicenseToHost",
- "opsi_unassignSoftwareLicenseFromHost",
- "opsi_unassignAllSoftwareLicensesFromHost",
- "opsi_getSoftwareLicense_hash",
- "opsi_getLicensePool_hash",
- "opsi_getSoftwareLicenseUsages",
- "opsi_getSoftwareLicenseUsagesForProductId",
- "opsi_getLicensePools_listOfHashes",
- "opsi_getLicenseInformationForProduct",
- "opsi_getPool",
- "opsi_getAllSoftwareLicenses",
- "opsi_removeLicense",
- "opsi_getReservedLicenses",
- "opsi_boundHostToLicense",
- "opsi_unboundHostFromLicense",
- "opsi_test",
+ "opsi_createLicensePool",
+ "opsi_deleteLicensePool",
+ "opsi_createLicense",
+ "opsi_assignSoftwareLicenseToHost",
+ "opsi_unassignSoftwareLicenseFromHost",
+ "opsi_unassignAllSoftwareLicensesFromHost",
+ "opsi_getSoftwareLicense_hash",
+ "opsi_getLicensePool_hash",
+ "opsi_getSoftwareLicenseUsages",
+ "opsi_getSoftwareLicenseUsagesForProductId",
+ "opsi_getLicensePools_listOfHashes",
+ "opsi_getLicenseInformationForProduct",
+ "opsi_getPool",
+ "opsi_getAllSoftwareLicenses",
+ "opsi_removeLicense",
+ "opsi_getReservedLicenses",
+ "opsi_boundHostToLicense",
+ "opsi_unboundHostFromLicense",
+ "opsi_test",
);
@EXPORT = @events;
&add_content2xml_hash($out_hash, "hostId", $hostId);
}
+ my $callobj;
+
# Move to XML string
my $xml_msg= &create_xml_string($out_hash);
- my $callobj;
# Check if we need to get host or global information
if (defined $hostId){
$callobj = {
# For hosts, only return the products that are or get installed
$callobj = {
- method => 'getLocalBootProductInformation_list',
- params => [ ],
+ method => 'getProductInformation_list',
+ params => [ undef, 'localboot' ],
id => 1,
};
return ($res->result, 0);
}
+
+################################
+# @brief Get all host information for a specific host.
+# @param msg - STRING - xml message with hostId tag
+# @param msg_hash - HASHREF - message information parsed into a hash
+# @param session_id - INTEGER - POE session id of the processing of this message
+# @return out_msg - STRING - feedback to GOsa in success and error case
+sub opsi_get_full_product_host_information {
+ my $startTime = Time::HiRes::time;
+ my ($msg, $msg_hash, $session_id) = @_;
+ my $header = @{$msg_hash->{'header'}}[0];
+ my $source = @{$msg_hash->{'source'}}[0];
+ my $target = @{$msg_hash->{'target'}}[0];
+ my $forward_to_gosa = @{$msg_hash->{'forward_to_gosa'}}[0];
+ my $hostId;
+ my $xml_msg;
+
+# $callobj = {
+# method => 'getFullProductHostInformation_list',
+# params => [ $hostId ],
+# id => 1,
+# };
+# my $res = $main::opsi_client->call($main::opsi_url, $callobj);
+# print STDERR "===================================================================\n";
+# print STDERR Dumper $res;
+# print STDERR "===================================================================\n";
+}
+
1;