Code

Added gosaLogServer to config class
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 15 May 2007 07:55:21 +0000 (07:55 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 15 May 2007 07:55:21 +0000 (07:55 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@6379 594d385d-05f5-0310-b6e9-bd551577e9d8

include/class_config.inc

index 762c6e0f91510fe01dc74e672eddb143d97d8df6..e3d3635e07c3fc76f14fe482b70db4a3edb79948 100644 (file)
@@ -420,6 +420,8 @@ class config  {
           'PASSWORD'   => $attrs['goGlpiPassword'][0],
           'DB'         => $attrs['goGlpiDatabase'][0]);
     }
+
+
     /* Get logdb server */
     $ldap->cd ($this->current['BASE']);
     $ldap->search ("(objectClass=goLogDBServer)");
@@ -430,6 +432,20 @@ class config  {
           'PASSWORD' => $attrs['goLogPassword'][0]);
     }
 
+
+    /* GOsa logging databases */
+    $ldap->cd ($this->current['BASE']);
+    $ldap->search ("(objectClass=gosaLogServer)");
+    if ($ldap->count()){
+      $attrs= $ldap->fetch();
+      $this->data['SERVERS']['LOGGING'][$attrs['cn'][0]]= 
+          array(
+          'USER'  => $attrs['goLogDBUser'][0],
+          'DB'    => $attrs['goLogDB'][0],
+          'PWD'   => $attrs['goLogDBPassword'][0]);
+    }
+
+
     /* Get NFS server lists */
     $tmp= array("default");
     $ldap->cd ($this->current['BASE']);