summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: edc808d)
raw | patch | inline | side by side (parent: edc808d)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 3 Jan 2008 15:23:45 +0000 (15:23 +0000) | ||
committer | cajus <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 | patch | blob | history | |
gosa-si/gosa-si-server | patch | blob | history | |
gosa-si/modules/GosaSupportDaemon.pm | patch | blob | history |
diff --git a/gosa-si/debian/control b/gosa-si/debian/control
index b860d234e604746f4893d6b19874521508e001e6..5cd7ae0a875ad8ed028e4c88cbf88133a1263dec 100644 (file)
--- a/gosa-si/debian/control
+++ b/gosa-si/debian/control
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
diff --git a/gosa-si/gosa-si-server b/gosa-si/gosa-si-server
index c3e79fb3ee3a69656e85a8f4e5bee8ab9b02a58b..9ae65c92c88212c9b74cdaf20b246a490fdbcb9e 100755 (executable)
--- a/gosa-si/gosa-si-server
+++ b/gosa-si/gosa-si-server
}
# 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;
$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)
}
}
- &send_msg_hash2address($out_hash, $address);
+ &send_msg_hash2address($out_hash, $to);
}
1;