Code

Fixed problems in variable asssignement
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 3 Jan 2008 15:23:45 +0000 (15:23 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 3 Jan 2008 15:23:45 +0000 (15:23 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8198 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-si/debian/control
gosa-si/gosa-si-server
gosa-si/modules/GosaSupportDaemon.pm

index b860d234e604746f4893d6b19874521508e001e6..5cd7ae0a875ad8ed028e4c88cbf88133a1263dec 100644 (file)
@@ -7,7 +7,7 @@ Build-Depends: debhelper(>= 4.2.32), dpatch
 
 Package: gosa-si-common
 Architecture: any
-Depends: libconfig-inifiles-perl, libcrypt-rijndael-perl, libxml-simple-perl, libipc-shareable-perl, libdata-dumper-simple-perl, libmime-perl, libdbd-sqlite3-perl
+Depends: libconfig-inifiles-perl, libcrypt-rijndael-perl, libxml-simple-perl, libipc-shareable-perl, libdata-dumper-simple-perl, libmime-perl, libdbd-sqlite3-perl, libnet-ldap-perl
 Suggests: gosa-si-server, gosa-si-client
 Description: GOsa support infrastructure
  This package provides common library functionality used by the
index c3e79fb3ee3a69656e85a8f4e5bee8ab9b02a58b..9ae65c92c88212c9b74cdaf20b246a490fdbcb9e 100755 (executable)
@@ -1118,7 +1118,6 @@ while(1) {
     }
 
     # check gosa job queue for jobs with executable timestamp
-    print ">>>>>>>>>>>check gosa job queue ";
     my ($seconds, $minutes, $hours, $monthday, $month,
     $year, $weekday, $yearday, $sommertime) = localtime(time);
     $hours = $hours < 10 ? $hours = "0".$hours : $hours;
@@ -1129,7 +1128,6 @@ while(1) {
     $monthday = $monthday < 10 ? $monthday = "0".$monthday : $monthday;
     $year+=1900;
     my $timestamp = "$year$month$monthday$hours$minutes$seconds";
-    print "$timestamp\n";
     
     
     my $sql = "SELECT * FROM '$job_queue_table_name' WHERE status='waiting' AND timestamp<'$timestamp'";
index dfec8d8961720339fc886a09cdd68c2ed6e86c3f..d6a7f004480910fea67ad88e7028fd77cb9cb7fb 100644 (file)
@@ -343,7 +343,7 @@ sub send_msg ($$$$) {
                }
        }
 
-       &send_msg_hash2address($out_hash, $address);
+       &send_msg_hash2address($out_hash, $to);
 }
 
 1;