Code

removed debug output
[gosa.git] / plugins / admin / systems / class_goSyslogServer.inc
index 3ef9c860f4eb8737df08c21de6c496f6968121c5..2aa5a33ed0a939f765adc148bb979996ed66e210 100644 (file)
@@ -8,7 +8,7 @@ class goSyslogServer extends plugin{
 
   /* This plugin only writes its objectClass */
   var $objectclasses    = array("goSyslogServer");
-  var $attributes       = array("goSyslogServerStatus");
+  var $attributes       = array();
   var $StatusFlag       = "goSyslogServerStatus";
  
   /* This class can't be assigned twice so it conflicts with itsself */
@@ -17,7 +17,7 @@ class goSyslogServer extends plugin{
   var $DisplayName      = "";
   var $dn               = NULL;
   var $acl;
-
+  var $cn                    = "";
   var $goSyslogServerStatus  = "";
  
   function goSyslogServer($config,$dn)
@@ -148,6 +148,16 @@ class goSyslogServer 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");