summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 11b2b4b)
raw | patch | inline | side by side (parent: 11b2b4b)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 28 Aug 2008 08:36:16 +0000 (08:36 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 28 Aug 2008 08:36:16 +0000 (08:36 +0000) |
-No duplicates are displayed now
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@12290 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@12290 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/systems/admin/systems/class_systemManagement.inc | patch | blob | history |
diff --git a/gosa-plugins/systems/admin/systems/class_systemManagement.inc b/gosa-plugins/systems/admin/systems/class_systemManagement.inc
index a271bdedfc429cd70e719ace050bc36692f44ab8..ce07763de61369b2766ef845daaf3796ba562e25 100644 (file)
/* Append opsi systems, the opsi extension have to installed.
*/
if($this->opsi != NULL){
- $res = array_merge($res,$this->opsi->get_hosts_for_system_management());
+ $opsi_clients = $this->opsi->get_hosts_for_system_management();
if($this->opsi->is_error()){
msg_dialog::display(_("Error"),msgPool::siError($this->opsi->get_error()),ERROR_DIALOG);
}
}
/* Get all gotoTerminal's */
+ $t_id = 0;
+ $opsi_map = array();
foreach ($res as $value){
$tmp= $value['dn'];
/* Detect type of object and create an entry for $this->terminals */
$terminal = array();
- if (in_array_ics('opsi_client', $value["objectClass"])){
+ if (0 && in_array_ics('gosa_opsi_client', $value["objectClass"])){
/* check acl */
$terminal = $value;
}
}
+ /* Append collected data to the host list.
+ */
if(count($terminal)){
- $this->terminals[]=$terminal;
+ $t_id ++ ;
+ $this->terminals[$t_id]=$terminal;
+ $opsi_map[$value['cn'][0]] = $t_id;
+ }
+ }
+
+
+ /* Merge real hosts with opsi hosts.
+ If there is a samba host, then merge it with the opsi host,
+ to avoid duplicate entries.
+ */
+ foreach($opsi_clients as $entry){
+ if(isset($opsi_map[$entry['cn'][0]])){
+ continue;
}
+ $terminal = $entry;
+ $terminal['type'] = "O";
+ $this->terminals[] = $terminal;
}
$tmp =array();