X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Fsetup%2Fclass_setupStep_Schema.inc;h=63b6ce47334cf95873ec544d325fce93d64cef5a;hb=8622898839af785fe40adebaaeeccdd141d16d8d;hp=ebf083a4563c8243b8dc9473cbcaeb7e6c571585;hpb=972ee10b86c0d014353a5223a74fec0d937c38eb;p=gosa.git diff --git a/gosa-core/setup/class_setupStep_Schema.inc b/gosa-core/setup/class_setupStep_Schema.inc index ebf083a45..63b6ce473 100644 --- a/gosa-core/setup/class_setupStep_Schema.inc +++ b/gosa-core/setup/class_setupStep_Schema.inc @@ -29,6 +29,8 @@ class Step_Schema extends setup_step var $enable_schema_check = TRUE; var $samba_version = 3; + var $found_ocs = 0; + function Step_Schema() { $this->update_strings(); @@ -58,9 +60,28 @@ class Step_Schema extends setup_step }else{ $this->is_completed = TRUE; } + + /* Check if the database is already initialised. + * If the root object is missing we can't read any schema informations. + * In this case we should display a message. + */ + $cv = $this->parent->captured_values; + + /* Establish ldap connection */ + $ldap = new LDAP($cv['admin'], + $cv['password'], + $cv['connection'], + FALSE, + $cv['tls']); + + /* Check if root object exists */ + $ldap->cd($cv['base']); + $res = $ldap->search("(objectClass=*)"); $smarty = get_smarty(); $smarty->assign("bool",array(FALSE => _("No"), TRUE => _("Yes"))); + $smarty->assign("database_initialised", ($res == TRUE)); + $smarty->assign("found_ocs", $this->found_ocs); $smarty->assign("schema_readable",$this->schema_readable); $smarty->assign("enable_schema_check",$this->enable_schema_check); $smarty->assign("checks",$this->checked); @@ -91,9 +112,7 @@ class Step_Schema extends setup_step /* Get objectclasses */ $ldap = new LDAP($cfg['admin'],$cfg['password'],$cfg['connection'] ,FALSE,$cfg['tls']); $objectclasses = $ldap->get_objectclasses(); - if(count($objectclasses) == 0){ - msg_dialog::display(_("LDAP error"), _("Cannot detect information about the installed LDAP schema!"), ERROR_DIALOG); - } + $this->found_ocs = count($objectclasses); /* Which samba version do we use? */ if(isset($objectclasses['sambaSamAccount'])){