Code

removed debug output
[gosa.git] / plugins / admin / systems / class_goKrbServer.inc
index e5beef1250719eacbd6e3f06888602a497b57cce..edc0895365f2351510e1a25c7c6076926df8b9f7 100644 (file)
@@ -8,7 +8,7 @@ class goKrbServer extends plugin{
 
   /* This plugin only writes its objectClass */
   var $objectclasses    = array("goKrbServer");
-  var $attributes       = array("goKrbServerStatus","goKrbRealm", "goKrbAdmin","goKrbPassword");
+  var $attributes       = array("goKrbRealm", "goKrbAdmin","goKrbPassword");
   var $StatusFlag       = "goKrbServerStatus";
  
   /* This class can't be assigned twice so it conflicts with itsself */
@@ -18,7 +18,7 @@ class goKrbServer extends plugin{
   var $dn               = NULL;
   var $goKrbServerStatus= "";
   var $acl;
-
+  var $cn               ="";
   var $goKrbRealm     = "";
   var $goKrbAdmin     = "";
   var $goKrbPassword  ="";  
@@ -69,6 +69,7 @@ class goKrbServer extends plugin{
       $ldap->add($this->attrs);
     }
     show_ldap_error($ldap->get_error());
+    $this->handle_post_events("remove");
   }
 
 
@@ -86,6 +87,11 @@ class goKrbServer extends plugin{
       $ldap->add($this->attrs);
     }
     show_ldap_error($ldap->get_error());
+    if($this->initially_was_account){
+      $this->handle_post_events("modify");
+    }else{
+      $this->handle_post_events("add");
+    }
   }
 
 
@@ -157,6 +163,16 @@ class goKrbServer extends plugin{
       foreach ($add_attrs as $name => $value){
         $command= preg_replace("/%$name/", $value, $command);
       }
+
+      /* If there are still some %.. in our command, try to fill these with some other class vars */
+      if(preg_match("/%/",$command)){
+        $attrs = get_object_vars($this);
+        foreach($attrs as $name => $value){
+          if(!is_string($value)) continue;
+          $command= preg_replace("/%$name/", $value, $command);
+        }
+      }
+
       if (check_command($command)){
         @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__,
             $command, "Execute");