Your message dated Fri, 01 Jul 2005 10:17:42 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#316354: fixed in openldap2.2 2.2.26-2
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 30 Jun 2005 11:28:21 +0000
>From [EMAIL PROTECTED] Thu Jun 30 04:28:21 2005
Return-path: <[EMAIL PROTECTED]>
Received: from kw04.de (ww04.kw04.de) [213.131.254.194]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DnxDQ-0000uF-00; Thu, 30 Jun 2005 04:28:21 -0700
Received: from tsetse.adpm.de (dsl-084-056-091-169.arcor-ip.net [84.56.91.169])
by ww04.kw04.de (ww04.kw04.de) with ESMTP id 849B616DC0E
for <[EMAIL PROTECTED]>; Thu, 30 Jun 2005 13:28:08 +0200 (CEST)
Received: from tsetse.adpm.de (localhost [127.0.0.1])
by tsetse.adpm.de (Postfix) with ESMTP id 7CE352BC1A
for <[EMAIL PROTECTED]>; Thu, 30 Jun 2005 13:28:16 +0200 (CEST)
Received: from ant.adpm.de (ant.adpm.de [10.250.2.1])
by tsetse.adpm.de (Postfix) with ESMTP id 535422BC19
for <[EMAIL PROTECTED]>; Thu, 30 Jun 2005 13:28:14 +0200 (CEST)
Content-Type: multipart/mixed; boundary="===============1907643457=="
MIME-Version: 1.0
From: Peter Marschall <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: openldap2.2: Please move slapd and slurpd to /usr/sbin
X-Mailer: reportbug 3.12
Date: Thu, 30 Jun 2005 13:28:14 +0200
Message-Id: <[EMAIL PROTECTED]>
X-Virus-Scanned: ClamAV using ClamSMTP
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
This is a multi-part MIME message sent by reportbug.
--===============1907643457==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Package: openldap2.2
Severity: normal
Tags: patch
Hi,
currently Debian's binaries for slapd and slurp reside in /usr/lib/.
According to my understanding of the FHS and Debian policy this is not
the ideal location for these daemons:
- FHS says: internal binareis that are not intended to to be executed
directly by users
- Policy requires a per-package sub-directory below /usr/lib/
So, /usr/sbin is the more approproate place for these daemons
(this is also indicated by the links in /usr/sbin).
The attached patch changes the build process so that deamons
and slap* utilitiles reside in /usr/sbin.
This configuration works on my systems for quite some time without any
problems.
CU
Peter
-- System Information:
Debian Release: testing/unstable
APT prefers testing
APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
--===============1907643457==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="daemonpaths.diff"
--- debian/move_files 2005-06-30 13:12:12.000000000 +0200
+++ debian/move_files 2005-06-30 13:10:26.000000000 +0200
@@ -65,10 +65,19 @@
echo -n Installing:
set_target slapd
+# move binaries and adapt links (tools are links to slapd in OL2.2+)
+mv debian/tmp/usr/lib/slapd debian/tmp/usr/lib/slurpd debian/tmp/usr/sbin/
+( cd debian/tmp/usr/sbin && \
+ LINKS=`find ./ -type l | sed '[EMAIL PROTECTED]/@@'`; \
+ rm -f $LINKS; \
+ for link in $LINKS; do \
+ ln -s slapd $link; \
+ done; \
+)
install_stuff usr/sbin
install_stuff usr/lib/ldap
install_stuff usr/share/ldap
-install_stuff usr/lib/slapd usr/lib/slurpd
+#install_stuff usr/lib/slapd usr/lib/slurpd
install_stuff usr/share/man/man5/slapd*
install_stuff usr/share/man/man8
install_stuff etc/ldap/schema
@@ -89,6 +98,7 @@
# install_stuff etc/ldap/ldap*.conf
rm debian/tmp/etc/ldap/ldap*.conf
rm debian/tmp/usr/share/man/man5/ldap.conf*
+# link libldap-2.2*.so* to libldap_r-2.2*.so*
( cd debian/tmp/usr/lib; \
ln -sf libldap_r-2.2.so.? libldap-2.2.so.?;
ln -sf libldap_r-2.2.so.?.?.?? libldap-2.2.so.?.?.??
@@ -96,6 +106,7 @@
install_stuff usr/lib/*.so.*
set_target libldap2.2-dev
+# link libldap.a to libldap_r.la
ln -sf libldap_r.a debian/tmp/usr/lib/libldap.a
install_stuff usr/include
install_stuff usr/lib/*.so usr/lib/*.a
--- debian/rules 2005-06-30 13:12:12.000000000 +0200
+++ debian/rules 2005-06-30 13:10:26.000000000 +0200
@@ -95,7 +95,8 @@
dh_installexamples -a
dh_installinit -Xslapd.prerm -a -- "defaults 19 80"
dh_installdebconf -a
- dh_installcron -a
+ # when using OpenSSL, we do not need to add crontab entries
+ #dh_installcron -a
dh_strip -a
dh_link -a
dh_compress -a
--- debian/slapd.links 2005-06-30 13:12:12.000000000 +0200
+++ debian/slapd.links 2005-06-30 13:10:26.000000000 +0200
@@ -1,4 +1,2 @@
-usr/lib/slapd usr/sbin/slapd
-usr/lib/slurpd usr/sbin/slurpd
usr/share/slapd/DB_CONFIG usr/share/doc/slapd/examples/DB_CONFIG
usr/share/slapd/slapd.conf usr/share/doc/slapd/examples/slapd.conf
--===============1907643457==--
---------------------------------------
Received: (at 316354-close) by bugs.debian.org; 1 Jul 2005 14:23:03 +0000
>From [EMAIL PROTECTED] Fri Jul 01 07:23:03 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DoMQ2-0003UZ-00; Fri, 01 Jul 2005 07:23:02 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DoMKs-0005Wq-00; Fri, 01 Jul 2005 10:17:42 -0400
From: Torsten Landschoff <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#316354: fixed in openldap2.2 2.2.26-2
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Fri, 01 Jul 2005 10:17:42 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
X-CrossAssassin-Score: 4
Source: openldap2.2
Source-Version: 2.2.26-2
We believe that the bug you reported is fixed in the latest version of
openldap2.2, which is due to be installed in the Debian FTP archive:
ldap-utils_2.2.26-2_i386.deb
to pool/main/o/openldap2.2/ldap-utils_2.2.26-2_i386.deb
libldap-2.2-7_2.2.26-2_i386.deb
to pool/main/o/openldap2.2/libldap-2.2-7_2.2.26-2_i386.deb
openldap2.2_2.2.26-2.diff.gz
to pool/main/o/openldap2.2/openldap2.2_2.2.26-2.diff.gz
openldap2.2_2.2.26-2.dsc
to pool/main/o/openldap2.2/openldap2.2_2.2.26-2.dsc
slapd_2.2.26-2_i386.deb
to pool/main/o/openldap2.2/slapd_2.2.26-2_i386.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Torsten Landschoff <[EMAIL PROTECTED]> (supplier of updated openldap2.2 package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Fri, 1 Jul 2005 12:53:18 +0200
Source: openldap2.2
Binary: slapd ldap-utils libldap-2.2-7
Architecture: source i386
Version: 2.2.26-2
Distribution: unstable
Urgency: low
Maintainer: Torsten Landschoff <[EMAIL PROTECTED]>
Changed-By: Torsten Landschoff <[EMAIL PROTECTED]>
Description:
ldap-utils - OpenLDAP utilities
libldap-2.2-7 - OpenLDAP libraries
slapd - OpenLDAP server (slapd)
Closes: 313809 315122 316350 316351 316354 316355 316361
Changes:
openldap2.2 (2.2.26-2) unstable; urgency=low
.
* Assembled changes from patches supplied by Peter Marschall (thanks,
Peter):
| debian/move_files: Move slapd and slurpd to /usr/sbin and adjust symlinks
(closes: #316354).
+ debian/slapd.links: Remove symlinks from /usr/sbin to /usr/lib.
| debian/rules: Don't install cron jobs needed for GnuTLS as long as we are
using OpenSSL.
| debian/control: Remove build-dependencies needed for GnuTLS
(closes: #316355).
+ Require libsasl >= 2.1.18 as recommended by OpenLDAP project.
| Update quicktool patch from Quanah Gibson-Mount (closes: #316361).
| debian/slapd.init: Use /bin/sh as shell when running db_recover
(closes: #316350).
| debian/configure.options: Enabled dynlist and proxycache overlays
(closes: #316351).
.
* debian/po/de.po: Apply typo correction patch (closes: #313809).
* debian/po/fr.po: Apply updates by Christian Perrier (closes: #315122).
Files:
9f504417b43b6584103db8e9ce093f2f 1002 net optional openldap2.2_2.2.26-2.dsc
38d64db7217f192859499c2efe08c089 494827 net optional
openldap2.2_2.2.26-2.diff.gz
701a86ae899b85b0bd13300e07e51ea6 936826 net optional slapd_2.2.26-2_i386.deb
bed8ca76a8eda2d0a5353df8f2cb6611 119200 net optional
ldap-utils_2.2.26-2_i386.deb
e3703503ef228a096e51bbb659d1ffbf 151850 libs important
libldap-2.2-7_2.2.26-2_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFCxSaQdQgHtVUb5EcRAgqWAJ98wMeiUgnboDUJbRBMieoc6XWLyQCfQq0G
9H3cxEIZHpHGxagj+VvoZJE=
=F/0O
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]