Code

- Added new copyright files and fixed gosa-si-server from trunk
authoropensides <opensides@594d385d-05f5-0310-b6e9-bd551577e9d8>
Sun, 25 Jul 2010 07:58:06 +0000 (07:58 +0000)
committeropensides <opensides@594d385d-05f5-0310-b6e9-bd551577e9d8>
Sun, 25 Jul 2010 07:58:06 +0000 (07:58 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6@19097 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/debian/changelog
gosa-core/debian/copyright
gosa-si/gosa-si-server
gosa-si/modules/DBmysql.pm

index 202395a9cda49fc1ecd3b30f1bbb0141d59f67e6..0abdb00788c0fdeb1ce17658abee5c49371069e2 100644 (file)
@@ -5,8 +5,12 @@ gosa (2.6.10-1) unstable; urgency=low
 
   [ Benoit Mortier ]
   * Switch to dpkg-source 3.0 (quilt) format
+  * gosa fails with: "Fatal error: Call to undefined function
+    print_array() (Closes: #573220)
+  * GOSa fails to add IP and MAC addresses to samba created hosts
+    (Closes: #582896)
 
- -- Benoit Mortier <benoit.mortier@opensides.be>  Sat, 26 Jun 2010 22:48:41 +0200
+ -- Benoit Mortier <benoit.mortier@opensides.be>  Tue, 20 Jul 2010 12:48:02 +0200
 
 gosa (2.6.9-1) unstable; urgency=low
 
index e46552aa31b89e71cc2fcff4caa32bc11a588f09..2a471b3460056946af9151235b18efb17b00ebac 100644 (file)
@@ -5,7 +5,20 @@ It was downloaded from http://www.gosa-project.org
 
 Copyright: 
 
-    Copyright (C) 2001-2008 Cajus Pollmeier <pollmeier@gonicus.de>
+       Copyright (C) 2003-2010 GONICUS GmbH
+
+Upstream Authors: 
+
+       Copyright (C) 2003-2008 Cajus Pollmeier <pollmeier@gonicus.de>
+       Copyright (C) 2003-2008 Fabian Hickert <fabian.hickert@gonicus.de>  
+       Copyright (C) 2003-2005 Alejandro Escanero Blanco <aescanero@chaosdimension.org>
+       Copyright (c) 2003 Wouter Verhelst <wouter@debian.org>
+       Copyright (C) 2005 Benoit Mortier <benoit.mortier@opensides.be>
+       Copyright (C) 2005 Guillaume Delecourt <guillaume.delecourt@opensides.be>
+       Copyright (C) 2005 Vincent Seynhaeve <vincent.seynhaeve@opensides.be>
+       Copyright (C) 2006 Bernd Zeimetz <bernd@zeimetz.de>
+       Copyright (C) 2006 Gina Haeussge <osd@foosel.net>
+       Copyright (C) 2006 Jörn Dreyer, based on work by Cajus Pollmeier
 
 License:
 
@@ -45,7 +58,7 @@ License: MIT
  SOFTWARE.
 
 Files: controls.js
-Copyright:     (C) 2005-2009 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
+Copyright:  (C) 2005-2009 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
             (C) 2005-2009 Ivan Krstic (http://blogs.law.harvard.edu/ivan)
             (C) 2005-2009 Jon Tirsen (http://www.tirsen.com)
 License: MIT
@@ -182,8 +195,16 @@ Licence: MIT
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  SOFTWARE.
 
+SIEVE-PHP.LIB VERSION 0.0.8:
+       Copyright (C) 2001 Dan Ellis <danellis@rushmore.com>
+
+Files: gosa-core/include/class_ldap.inc: 
+       Copyright (C) 1998  Eric Kilfoil <eric@ipass.net>
+       Copyright (C) 2003 Alejandro Escanero Blanco <aescanero@chaosdimension.org>
+       Copyright (C) 2003-2008 GONICUS GmbH
+
 On Debian systems, the complete text of the GNU General
 Public License can be found in `/usr/share/common-licenses/GPL-2'.
 
-The Debian packaging is Copyright (C) 2010, Cajus Pollmeier <cajus@debian.org> and
+The Debian packaging is Copyright (C) 2010, Benoit Mortier <benoit.mortier@opensides.be> and
 is licensed under the GPL, see above.
index f1e33172f6f830ac16bc535e8481f4d85a9030d2..94f568e9ec170ab4fbaae37cf805217e4fd44234 100755 (executable)
@@ -3473,6 +3473,7 @@ GetOptions("h|help" => \&usage,
 &read_configfile($cfg_file, %cfg_defaults);
 &check_pid;
 
+#to prevent sombie child
 $SIG{CHLD} = 'IGNORE';
 
 # forward error messages to logfile
@@ -3488,8 +3489,8 @@ if( ! $foreground ) {
     $pid = fork;
     setsid                    or die "Can't start a new session: $!";
     umask 0;
-} else { 
-    $pid = $$; 
+#} else {
+#    $pid = $$;
 }
 
 # Do something useful - put our PID into the pid_file
index 7a7f67f7e36c5c7c9738fafeeef1cfb017809181..da87a38e1a2b57395f447fa7005b357fdde76f49 100644 (file)
@@ -1,11 +1,13 @@
-package GOSA::DBmysql;
+package GOsaSI::DBmysql;
 
 use strict;
 use warnings;
-use DBI;
+
 use Data::Dumper;
-use GOSA::GosaSupportDaemon;
 use Time::HiRes qw(usleep);
+use GOsaSI::GosaSupportDaemon;
+
+use DBI;
 
 my $col_names = {};