SPECS: openldap.spec - prevent upgrades removing modules from config

glen glen at pld-linux.org
Mon Feb 6 16:20:37 CET 2006


Author: glen                         Date: Mon Feb  6 15:20:37 2006 GMT
Module: SPECS                         Tag: HEAD
---- Log message:
- prevent upgrades removing modules from config

---- Files affected:
SPECS:
   openldap.spec (1.222 -> 1.223) 

---- Diffs:

================================================================
Index: SPECS/openldap.spec
diff -u SPECS/openldap.spec:1.222 SPECS/openldap.spec:1.223
--- SPECS/openldap.spec:1.222	Sun Jan 29 23:16:54 2006
+++ SPECS/openldap.spec	Mon Feb  6 16:20:31 2006
@@ -808,6 +808,7 @@
 fi
 
 %preun backend-bdb
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+back_bdb.la[[:blank:]]*$/# moduleload	back_bdb.la/
 wq
@@ -815,6 +816,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post backend-dnssrv
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
@@ -826,6 +828,7 @@
 fi
 
 %preun backend-dnssrv
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+back_dnssrv.la[[:blank:]]*$/# moduleload	back_dnssrv.la/
 wq
@@ -833,6 +836,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post backend-hdb
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
@@ -844,6 +848,7 @@
 fi
 
 %preun backend-hdb
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+back_hdb.la[[:blank:]]*$/# moduleload	back_hdb.la/
 wq
@@ -851,6 +856,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post backend-ldap
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
@@ -862,6 +868,7 @@
 fi
 
 %preun backend-ldap
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+back_ldap.la[[:blank:]]*$/# moduleload	back_ldap.la/
 wq
@@ -869,6 +876,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post backend-ldbm
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
@@ -880,6 +888,7 @@
 fi
 
 %preun backend-ldbm
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+back_ldbm.la[[:blank:]]*$/# moduleload	back_ldbm.la/
 wq
@@ -887,6 +896,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post backend-meta
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
@@ -898,6 +908,7 @@
 fi
 
 %preun backend-meta
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+back_meta.la[[:blank:]]*$/# moduleload	back_meta.la/
 wq
@@ -905,6 +916,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post backend-monitor
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
@@ -916,6 +928,7 @@
 fi
 
 %preun backend-monitor
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+back_monitor.la[[:blank:]]*$/# moduleload	back_monitor.la/
 wq
@@ -923,6 +936,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post backend-passwd
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
@@ -934,6 +948,7 @@
 fi
 
 %preun backend-passwd
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+back_passwd.la[[:blank:]]*$/# moduleload	back_passwd.la/
 wq
@@ -941,6 +956,7 @@
 if[ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %if %{with perl}
 %post backend-perl
@@ -953,6 +969,7 @@
 fi
 
 %preun backend-perl
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+back_perl.la[[:blank:]]*$/# moduleload	back_perl.la/
 wq
@@ -960,6 +977,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 %endif
 
 %post backend-relay
@@ -972,6 +990,7 @@
 fi
 
 %preun backend-relay
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+back_relay.la[[:blank:]]*$/# moduleload	back_relay.la/
 wq
@@ -979,6 +998,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post backend-shell
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
@@ -990,6 +1010,7 @@
 fi
 
 %preun backend-shell
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+back_shell.la[[:blank:]]*$/# moduleload	back_shell.la/
 wq
@@ -997,6 +1018,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %if %{with odbc}
 %post backend-sql
@@ -1009,6 +1031,7 @@
 fi
 
 %preun backend-sql
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+back_sql.la[[:blank:]]*$/# moduleload	back_sql.la/
 wq
@@ -1016,6 +1039,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 %endif
 
 %post overlay-pcache
@@ -1028,6 +1052,7 @@
 fi
 
 %preun overlay-pcache
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+pcache.la[[:blank:]]*$/# moduleload	pcache.la/
 wq
@@ -1035,6 +1060,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post overlay-accesslog
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
@@ -1046,6 +1072,7 @@
 fi
 
 %preun overlay-accesslog
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+accesslog.la[[:blank:]]*$/# moduleload	accesslog.la/
 wq
@@ -1053,6 +1080,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post overlay-denyop
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
@@ -1064,6 +1092,7 @@
 fi
 
 %preun overlay-denyop
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+denyop.la[[:blank:]]*$/# moduleload	denyop.la/
 wq
@@ -1071,6 +1100,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post overlay-dyngroup
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
@@ -1082,6 +1112,7 @@
 fi
 
 %preun overlay-dyngroup
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+dyngroup.la[[:blank:]]*$/# moduleload	dyngroup.la/
 wq
@@ -1089,6 +1120,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post overlay-dynlist
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
@@ -1100,6 +1132,7 @@
 fi
 
 %preun overlay-dynlist
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+dynlist.la[[:blank:]]*$/# moduleload	dynlist.la/
 wq
@@ -1107,6 +1140,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post overlay-lastmod
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
@@ -1118,6 +1152,7 @@
 fi
 
 %preun overlay-lastmod
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+lastmod.la[[:blank:]]*$/# moduleload	lastmod.la/
 wq
@@ -1125,6 +1160,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post overlay-ppolicy
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
@@ -1136,6 +1172,7 @@
 fi
 
 %preun overlay-ppolicy
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+ppolicy.la[[:blank:]]*$/# moduleload	ppolicy.la/
 wq
@@ -1143,6 +1180,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post overlay-refint
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
@@ -1154,6 +1192,7 @@
 fi
 
 %preun overlay-refint
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+refint.la[[:blank:]]*$/# moduleload	refint.la/
 wq
@@ -1161,8 +1200,10 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post overlay-retcode
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^#[[:blank:]]*moduleload[[:blank:]]\\+retcode.la[[:blank:]]*$/moduleload	retcode.la/
 wq
@@ -1170,8 +1211,10 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2
 fi
+fi
 
 %preun overlay-retcode
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+retcode.la[[:blank:]]*$/# moduleload	retcode.la/
 wq
@@ -1179,6 +1222,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post overlay-rwm
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
@@ -1190,6 +1234,7 @@
 fi
 
 %preun overlay-rwm
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+rwm.la[[:blank:]]*$/# moduleload	rwm.la/
 wq
@@ -1197,6 +1242,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post overlay-syncprov
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
@@ -1208,6 +1254,7 @@
 fi
 
 %preun overlay-syncprov
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+syncprov.la[[:blank:]]*$/# moduleload	syncprov.la/
 wq
@@ -1215,6 +1262,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post overlay-translucent
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
@@ -1226,6 +1274,7 @@
 fi
 
 %preun overlay-translucent
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+translucent.la[[:blank:]]*$/# moduleload	translucent.la/
 wq
@@ -1233,6 +1282,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post overlay-unique
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
@@ -1244,6 +1294,7 @@
 fi
 
 %preun overlay-unique
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+unique.la[[:blank:]]*$/# moduleload	unique.la/
 wq
@@ -1251,6 +1302,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %post overlay-valsort
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
@@ -1262,6 +1314,7 @@
 fi
 
 %preun overlay-valsort
+if [ "$1" = 0 ]; then
 ed -s %{_sysconfdir}/openldap/slapd.conf << EOF || :
 ,s/^[[:blank:]]*moduleload[[:blank:]]\\+valsort.la[[:blank:]]*$/# moduleload	valsort.la/
 wq
@@ -1269,6 +1322,7 @@
 if [ -f /var/lock/subsys/ldap ]; then
 	/etc/rc.d/init.d/ldap restart >&2 || :
 fi
+fi
 
 %files
 %defattr(644,root,root,755)
@@ -1487,6 +1541,9 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.223  2006/02/06 15:20:31  glen
+- prevent upgrades removing modules from config
+
 Revision 1.222  2006/01/29 22:16:54  qboosh
 - updated to 2.3.19
 
@@ -1645,7 +1702,7 @@
 - updated to 2.2.18 (bugfixes)
 
 Revision 1.172  2004/10/12 12:35:25  ankry
-- %%groupremove/%%userremove support, some standarization
+- %groupremove/%userremove support, some standarization
 
 Revision 1.171  2004/09/14 09:37:20  blues
 - possible SECURITY note
@@ -1794,7 +1851,7 @@
 - backend modules linked with requred libraries (-backend_libs.patch)
 
 Revision 1.127  2003/01/14 07:26:44  trojan
-- fixed %%files (no need 755 for *.la)
+- fixed %files (no need 755 for *.la)
 
 Revision 1.126  2003/01/11 21:11:39  qboosh
 - removed obsolete patches: secpatch,db41,no_libnsl
@@ -1812,14 +1869,13 @@
 Revision 1.124  2003/01/09 13:22:23  jajcus
 - spec adapterized
 - typos
-- ignore ed's exit status in %%post and %%preun
+- ignore ed's exit status in %post and %preun
 
 Revision 1.123  2003/01/08 14:30:54  jajcus
-
-Upgrade to 2.1.12 (major change 2.0.x -> 2.1.x) NFY
-Most important changes:
-- several patches removed/commented-out
-- backends in subpackages
+- Upgrade to 2.1.12 (major change 2.0.x -> 2.1.x) NFY
+  Most important changes:
+  - several patches removed/commented-out
+  - backends in subpackages
 - administration guide removed (I am not sure about copyrights and the
   documentation included in the package seems good enough)
 
@@ -1838,7 +1894,7 @@
 
 Revision 1.118  2002/10/26 20:52:17  qboosh
 - added db41 patch with db 4.1 compatibility fix (shouldn't break db3)
-- fixed %%pre servers, added %%postun servers; more specific Requires()
+- fixed %pre servers, added %postun servers; more specific Requires()
 - release 2
 
 Revision 1.117  2002/10/20 22:09:34  kloczek
@@ -1863,15 +1919,15 @@
 Revision 1.111  2002/07/02 09:14:14  jajcus
 - Version 2.0.25
 - ldapi_FHS patch fixed
-- new %%doc compression
+- new %doc compression
 
 Revision 1.110  2002/06/23 20:32:32  kloczek
 - perl -pi -e "s/^libtoolize --copy --force/\%\{__libtoolize\}/"
 
 Revision 1.109  2002/05/21 23:14:18  kloczek
-perl -pi -e "s/^automake -a -c -f --foreing/\%\{__automake\}/; \
+- perl -pi -e "s/^automake -a -c -f --foreing/\%\{__automake\}/; \
              s/^automake -a -c -f/\%\{__automake\}/; \
-	     s/^autoconf/\%\{__autoconf\}/"
+     s/^autoconf/\%\{__autoconf\}/"
 
 Revision 1.108  2002/04/28 11:00:18  mkochano
 - Release 6.
@@ -1889,7 +1945,7 @@
 - release 5: merge translations from KSI and new sendbuf patch (frm rawhide).
 
 Revision 1.104  2002/04/18 12:57:01  jajcus
-- dirty fix for MD5 {CRYPT} passwords problems (%%{name}-crypt_lib_order.patch)
+- dirty fix for MD5 {CRYPT} passwords problems (%{name}-crypt_lib_order.patch)
 
 Revision 1.103  2002/04/18 11:32:27  jajcus
 - Version: 2.0.23
@@ -1917,11 +1973,11 @@
   Group field using gettext).
 
 Revision 1.98  2002/01/19 14:06:04  mkochano
-- s/%%Install/%install/
+- s/%Install/%install/
   It looks like rpm doesn't care about case, but ./builder does.
 
 Revision 1.97  2002/01/18 02:14:07  kloczek
-perl -pi -e "s/pld-list\@pld.org.pl/feedback\@pld.org.pl/"
+- perl -pi -e "s/pld-list\@pld.org.pl/feedback\@pld.org.pl/"
 
 Revision 1.96  2002/01/18 00:57:56  kloczek
 - release 2: s#db-devel#db3-devel# in Require rule in devel.
@@ -1930,12 +1986,12 @@
 - updated to 2.0.21 - SECURITY FIXES, PLEASE UPDATE
 
 Revision 1.94  2002/01/10 10:12:09  misiek
-For devel subpackage:
-Requires:       cyrus-sasl-devel
-Requires:       pam-devel
-Requires:       db-devel
-Requires:       openssl-devel
-(see libldap.la)
+- For devel subpackage:
+  Requires:       cyrus-sasl-devel
+  Requires:       pam-devel
+  Requires:       db-devel
+  Requires:       openssl-devel
+  (see libldap.la)
 
 Revision 1.93  2001/12/22 19:56:14  blues
 - corrected descriptions of packages (main package does NOT provide slapd)
@@ -1989,7 +2045,7 @@
 - updated to 2.0.13,
 - added no_nsl patch (remove checking for libnsl if enabled use libwrap),
 - added regenerate ac/am files.
-NOTE: somewhere in ac suit is bug which causes fail on run configure script.
+  NOTE: somewhere in ac suit is bug which causes fail on run configure script.
 
 Revision 1.80  2001/08/12 19:25:54  qboosh
 - removed pidfile patch (from rawhide) - it's buggy.
@@ -2045,20 +2101,20 @@
 - don't include *.schema.default in packages
 
 Revision 1.66  2000/10/05 19:41:59  wiget
-modules back
+- modules back
 
 Revision 1.65  2000/10/05 19:21:35  kloczek
 - updated to 2.0.6.
 
 Revision 1.64  2000/10/04 14:23:11  wiget
-modules support is disabled in this version :-(
+- modules support is disabled in this version :-(
 
 Revision 1.63  2000/10/04 00:05:00  kloczek
 - updated to 2.0.5,
 - use rpm new automation suit.
 
 Revision 1.62  2000/10/03 17:17:17  wiget
-If you don't like btree then build openldap with --define 'ldbm_api hash'
+- If you don't like btree then build openldap with --define 'ldbm_api hash'
 
 Revision 1.61  2000/10/02 16:02:12  wiget
 - added 1 more BuildRequires
@@ -2120,10 +2176,10 @@
 - updated to 1.2.11.
 
 Revision 1.46  2000/06/09 07:54:45  kloczek
-- more %%{__make} macros.
+- more %{__make} macros.
 
 Revision 1.45  2000/06/09 07:23:27  kloczek
-- added using %%{__make} macro.
+- added using %{__make} macro.
 
 Revision 1.44  2000/05/21 00:14:05  kloczek
 - spec adapterized.
@@ -2188,7 +2244,7 @@
 - fixed requires (PR#46)
 
 Revision 1.28  1999/09/10 12:16:51  jajcus
-/etc/openldap/ldap.conf -> /etc/ldap.conf
+- /etc/openldap/ldap.conf -> /etc/ldap.conf
<<Diff was trimmed, longer than 597 lines>>

---- CVS-web:
    http://cvs.pld-linux.org/SPECS/openldap.spec?r1=1.222&r2=1.223&f=u



More information about the pld-cvs-commit mailing list