Code

Exlude dhcp entries from existence check in check()
[gosa.git] / plugins / admin / systems / class_componentGeneric.inc
index 90614de98bfdf32fd4e2a000fee0e9b6388fe02f..9b890a547b10fad692b226665785bd1a4d3df045 100644 (file)
@@ -197,6 +197,9 @@ class componentGeneric extends plugin
       $ldap->search ("(cn=".$this->cn.")", array("cn"));
       if ($ldap->count() != 0){
         while ($attrs= $ldap->fetch()){
+          if(preg_match("/cn=dhcp,/",$attrs['dn'])){
+            continue;
+          }
           if ($attrs['dn'] != $this->orig_dn){
             $message[]= sprintf (_("There is already an entry '%s' in the base choosen by you"), $this->cn);
             break;