fe22e2c909
389-ds-base-1.2.8.3 Bug 700145 - userpasswd not replicating Bug 700557 - Linked attrs callbacks access free'd pointers after close Bug 694336 - Group sync hangs Windows initial Sync Bug 700215 - ldclt core dumps Bug 695779 - windows sync can lose old values when a new value is added Bug 697027 - 12 - minor memory leaks found by Valgrind + TET
863 lines
34 KiB
RPMSpec
863 lines
34 KiB
RPMSpec
|
|
%global pkgname dirsrv
|
|
# for a pre-release, define the prerel field e.g. .a1 .rc2 - comment out for official release
|
|
# also remove the space between % and global - this space is needed because
|
|
# fedpkg verrel stupidly ignores comment lines
|
|
# % global prerel .rc5
|
|
# also need the relprefix field for a pre-release e.g. .0 - also comment out for official release
|
|
# % global relprefix 0.
|
|
|
|
%global use_openldap 1
|
|
|
|
# fedora 15 and later uses tmpfiles.d
|
|
# otherwise, comment this out
|
|
%{!?with_tmpfiles_d: %global with_tmpfiles_d %{_sysconfdir}/tmpfiles.d}
|
|
|
|
Summary: 389 Directory Server (base)
|
|
Name: 389-ds-base
|
|
Version: 1.2.8.3
|
|
Release: %{?relprefix}1%{?prerel}%{?dist}
|
|
License: GPLv2 with exceptions
|
|
URL: http://port389.org/
|
|
Group: System Environment/Daemons
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
Provides: fedora-ds-base = %{version}-%{release}
|
|
Obsoletes: fedora-ds-base < 1.2.1-1
|
|
Obsoletes: %{name}-selinux
|
|
Conflicts: selinux-policy-base < 3.9.8
|
|
Requires: %{name}-libs = %{version}-%{release}
|
|
|
|
BuildRequires: nspr-devel
|
|
BuildRequires: nss-devel
|
|
BuildRequires: svrcore-devel
|
|
%if %{use_openldap}
|
|
BuildRequires: openldap-devel
|
|
%else
|
|
BuildRequires: mozldap-devel
|
|
%endif
|
|
BuildRequires: db4-devel
|
|
BuildRequires: cyrus-sasl-devel
|
|
BuildRequires: icu
|
|
BuildRequires: libicu-devel
|
|
BuildRequires: pcre-devel
|
|
# The following are needed to build the snmp ldap-agent
|
|
BuildRequires: net-snmp-devel
|
|
%ifnarch sparc sparc64 ppc ppc64 s390 s390x
|
|
BuildRequires: lm_sensors-devel
|
|
%endif
|
|
BuildRequires: bzip2-devel
|
|
BuildRequires: zlib-devel
|
|
BuildRequires: openssl-devel
|
|
BuildRequires: tcp_wrappers
|
|
# the following is for the pam passthru auth plug-in
|
|
BuildRequires: pam-devel
|
|
|
|
# this is needed for using semanage from our setup scripts
|
|
Requires: policycoreutils-python
|
|
|
|
# the following are needed for some of our scripts
|
|
%if %{use_openldap}
|
|
Requires: openldap-clients
|
|
%else
|
|
Requires: mozldap-tools
|
|
%endif
|
|
# use_openldap assumes perl-Mozilla-LDAP is built with openldap support
|
|
Requires: perl-Mozilla-LDAP
|
|
|
|
# this is needed to setup SSL if you are not using the
|
|
# administration server package
|
|
Requires: nss-tools
|
|
|
|
# these are not found by the auto-dependency method
|
|
# they are required to support the mandatory LDAP SASL mechs
|
|
Requires: cyrus-sasl-gssapi
|
|
Requires: cyrus-sasl-md5
|
|
|
|
# this is needed for verify-db.pl
|
|
Requires: db4-utils
|
|
|
|
# This picks up libperl.so as a Requires, so we add this versioned one
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
|
|
# This is for the fedora-ds -> 389 run level hack
|
|
Requires(post): /sbin/service
|
|
|
|
# for the init script
|
|
Requires(post): /sbin/chkconfig
|
|
Requires(preun): /sbin/chkconfig
|
|
Requires(preun): /sbin/service
|
|
|
|
Source0: http://port389.org/sources/%{name}-%{version}%{?prerel}.tar.bz2
|
|
# 389-ds-git.sh should be used to generate the source tarball from git
|
|
Source1: %{name}-git.sh
|
|
Source2: %{name}-devel.README
|
|
|
|
%description
|
|
389 Directory Server is an LDAPv3 compliant server. The base package includes
|
|
the LDAP server and command line utilities for server administration.
|
|
|
|
%package libs
|
|
Summary: Core libraries for 389 Directory Server
|
|
Group: System Environment/Daemons
|
|
BuildRequires: nspr-devel
|
|
BuildRequires: nss-devel
|
|
BuildRequires: svrcore-devel
|
|
%if %{use_openldap}
|
|
BuildRequires: openldap-devel
|
|
%else
|
|
BuildRequires: mozldap-devel
|
|
%endif
|
|
BuildRequires: db4-devel
|
|
BuildRequires: cyrus-sasl-devel
|
|
BuildRequires: libicu-devel
|
|
BuildRequires: pcre-devel
|
|
|
|
%description libs
|
|
Core libraries for the 389 Directory Server base package. These libraries
|
|
are used by the main package and the -devel package. This allows the -devel
|
|
package to be installed with just the -libs package and without the main package.
|
|
|
|
%package devel
|
|
Summary: Development libraries for 389 Directory Server
|
|
Group: Development/Libraries
|
|
Requires: %{name}-libs = %{version}-%{release}
|
|
Requires: pkgconfig
|
|
Requires: nspr-devel
|
|
Requires: nss-devel
|
|
Requires: svrcore-devel
|
|
%if %{use_openldap}
|
|
Requires: openldap-devel
|
|
%else
|
|
Requires: mozldap-devel
|
|
%endif
|
|
Provides: fedora-ds-base-devel = %{version}-%{release}
|
|
Obsoletes: fedora-ds-base-devel < 1.2.1-1
|
|
|
|
%description devel
|
|
Development Libraries and headers for the 389 Directory Server base package.
|
|
|
|
%prep
|
|
%setup -q -n %{name}-%{version}%{?prerel}
|
|
cp %{SOURCE2} README.devel
|
|
|
|
%build
|
|
%if %{use_openldap}
|
|
OPENLDAP_FLAG="--with-openldap"
|
|
%endif
|
|
%{?with_tmpfiles_d: TMPFILES_FLAG="--with-tmpfiles-d=%{with_tmpfiles_d}"}
|
|
%configure --enable-autobind --with-selinux $OPENLDAP_FLAG $TMPFILES_FLAG
|
|
|
|
# Generate symbolic info for debuggers
|
|
export XCFLAGS=$RPM_OPT_FLAGS
|
|
|
|
%ifarch x86_64 ppc64 ia64 s390x sparc64
|
|
export USE_64=1
|
|
%endif
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
make DESTDIR="$RPM_BUILD_ROOT" install
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/var/log/%{pkgname}
|
|
mkdir -p $RPM_BUILD_ROOT/var/lib/%{pkgname}
|
|
mkdir -p $RPM_BUILD_ROOT/var/lock/%{pkgname}
|
|
|
|
#remove libtool and static libs
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/%{pkgname}/*.a
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/%{pkgname}/*.la
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/%{pkgname}/plugins/*.a
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/%{pkgname}/plugins/*.la
|
|
|
|
# make sure perl scripts have a proper shebang
|
|
sed -i -e 's|#{{PERL-EXEC}}|#!/usr/bin/perl|' $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/script-templates/template-*.pl
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%post
|
|
/sbin/chkconfig --add %{pkgname}
|
|
/sbin/ldconfig
|
|
/sbin/chkconfig --add %{pkgname}-snmp
|
|
|
|
%preun
|
|
if [ $1 = 0 ]; then # Final removal
|
|
/sbin/service %{pkgname} stop >/dev/null 2>&1 || :
|
|
/sbin/chkconfig --del %{pkgname}
|
|
/sbin/service %{pkgname}-snmp stop >/dev/null 2>&1 || :
|
|
/sbin/chkconfig --del %{pkgname}-snmp
|
|
fi
|
|
|
|
%postun
|
|
/sbin/ldconfig
|
|
if [ $1 = 0 ]; then # Final removal
|
|
rm -rf /var/run/%{pkgname}
|
|
fi
|
|
|
|
%posttrans
|
|
instbase="%{_sysconfdir}/%{pkgname}"
|
|
# echo posttrans - upgrading - looking for instances in $instbase
|
|
# find all instances
|
|
instances="" # instances that require a restart after upgrade
|
|
ninst=0 # number of instances found in total
|
|
for dir in $instbase/slapd-* ; do
|
|
# echo dir = $dir
|
|
if [ ! -d "$dir" ] ; then continue ; fi
|
|
case "$dir" in *.removed) continue ;; esac
|
|
basename=`basename $dir`
|
|
inst=`echo $basename | sed -e 's/slapd-//g'`
|
|
# echo found instance $inst - getting status
|
|
if /sbin/service %{pkgname} status $inst >/dev/null 2>&1 ; then
|
|
# echo instance $inst is running
|
|
instances="$instances $inst"
|
|
else
|
|
# echo instance $inst is not running
|
|
:
|
|
fi
|
|
ninst=`expr $ninst + 1`
|
|
done
|
|
if [ $ninst -eq 0 ] ; then
|
|
exit 0 # have no instances to upgrade - just skip the rest
|
|
fi
|
|
# shutdown all instances
|
|
# echo shutting down all instances . . .
|
|
/sbin/service %{pkgname} stop > /dev/null 2>&1
|
|
# do the upgrade
|
|
# echo upgrading instances . . .
|
|
%{_sbindir}/setup-ds.pl -l /dev/null -u -s General.UpdateMode=offline > /dev/null 2>&1
|
|
# restart instances that require it
|
|
for inst in $instances ; do
|
|
# echo restarting instance $inst
|
|
/sbin/service %{pkgname} start $inst >/dev/null 2>&1
|
|
done
|
|
# restart the snmp subagent if needed
|
|
/sbin/service %{pkgname}-snmp condrestart > /dev/null 2>&1
|
|
exit 0
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc LICENSE EXCEPTION LICENSE.GPLv2
|
|
%dir %{_sysconfdir}/%{pkgname}
|
|
%dir %{_sysconfdir}/%{pkgname}/schema
|
|
%config(noreplace)%{_sysconfdir}/%{pkgname}/schema/*.ldif
|
|
%dir %{_sysconfdir}/%{pkgname}/config
|
|
%config(noreplace)%{_sysconfdir}/%{pkgname}/config/slapd-collations.conf
|
|
%config(noreplace)%{_sysconfdir}/%{pkgname}/config/certmap.conf
|
|
%config(noreplace)%{_sysconfdir}/%{pkgname}/config/ldap-agent.conf
|
|
%config(noreplace)%{_sysconfdir}/%{pkgname}/config/template-initconfig
|
|
%config(noreplace)%{_sysconfdir}/sysconfig/%{pkgname}
|
|
%{_datadir}/%{pkgname}
|
|
%{_sysconfdir}/rc.d/init.d/%{pkgname}
|
|
%{_sysconfdir}/rc.d/init.d/%{pkgname}-snmp
|
|
%{_bindir}/*
|
|
%{_sbindir}/*
|
|
%{_libdir}/%{pkgname}/libns-dshttpd.so*
|
|
%{_libdir}/%{pkgname}/perl
|
|
%dir %{_libdir}/%{pkgname}/plugins
|
|
%{_libdir}/%{pkgname}/plugins/*.so
|
|
%dir %{_localstatedir}/lib/%{pkgname}
|
|
%dir %{_localstatedir}/log/%{pkgname}
|
|
%ghost %dir %{_localstatedir}/lock/%{pkgname}
|
|
%{_mandir}/man1/*
|
|
%{_mandir}/man8/*
|
|
|
|
%files devel
|
|
%defattr(-,root,root,-)
|
|
%doc LICENSE EXCEPTION LICENSE.GPLv2 README.devel
|
|
%{_includedir}/%{pkgname}
|
|
%{_libdir}/%{pkgname}/libslapd.so
|
|
%{_libdir}/pkgconfig/*
|
|
|
|
%files libs
|
|
%defattr(-,root,root,-)
|
|
%doc LICENSE EXCEPTION LICENSE.GPLv2 README.devel
|
|
%dir %{_libdir}/%{pkgname}
|
|
%{_libdir}/%{pkgname}/libslapd.so.*
|
|
|
|
%changelog
|
|
* Mon May 2 2011 Rich Megginson <rmeggins@redhat.com> - 1.2.8.3-1
|
|
- 389-ds-base-1.2.8.3
|
|
- Bug 700145 - userpasswd not replicating
|
|
- Bug 700557 - Linked attrs callbacks access free'd pointers after close
|
|
- Bug 694336 - Group sync hangs Windows initial Sync
|
|
- Bug 700215 - ldclt core dumps
|
|
- Bug 695779 - windows sync can lose old values when a new value is added
|
|
- Bug 697027 - 12 - minor memory leaks found by Valgrind + TET
|
|
|
|
* Thu Apr 14 2011 Rich Megginson <rmeggins@redhat.com> - 1.2.8.2-1
|
|
- 389-ds-base-1.2.8.2
|
|
- Bug 696407 - If an entry with a mixed case RDN is turned to be
|
|
- a tombstone, it fails to assemble DN from entryrdn
|
|
|
|
* Fri Apr 8 2011 Rich Megginson <rmeggins@redhat.com> - 1.2.8.1-1
|
|
- 389-ds-base-1.2.8.1
|
|
- Bug 693962 - Full replica push loses some entries with multi-valued RDNs
|
|
|
|
* Tue Apr 5 2011 Rich Megginson <rmeggins@redhat.com> - 1.2.8.0-1
|
|
- 389-ds-base-1.2.8.0
|
|
- Bug 693473 - rhds82 rfe - windows_tot_run to log Sizelimit exceeded instead of LDAP error - -1
|
|
- Bug 692991 - rhds82 - windows_tot_run: failed to obtain data to send to the consumer; LDAP error - -1
|
|
- Bug 693466 - Unable to change schema online
|
|
- Bug 693503 - matching rules do not inherit from superior attribute type
|
|
- Bug 693455 - nsMatchingRule does not work with multiple values
|
|
- Bug 693451 - cannot use localized matching rules
|
|
- Bug 692331 - Segfault on index update during full replication push on 1.2.7.5
|
|
|
|
* Mon Apr 4 2011 Rich Megginson <rmeggins@redhat.com> - 1.2.8-0.10.rc5
|
|
- 389-ds-base-1.2.8.rc5
|
|
- Bug 692469 - Replica install fails after step for "enable GSSAPI for replication"
|
|
|
|
* Tue Mar 29 2011 Rich Megginson <rmeggins@redhat.com> - 1.2.8-0.9.rc4
|
|
- 389-ds-base-1.2.8.rc4
|
|
- Bug 668385 - DS pipe log script is executed as many times as the dirsrv serv
|
|
ice is restarted
|
|
- 389-ds-base-1.2.8.rc3
|
|
- Bug 690955 - Mrclone fails due to the replica generation id mismatch
|
|
|
|
* Tue Mar 22 2011 Rich Megginson <rmeggins@redhat.com> - 1.2.8-0.8.rc2
|
|
- 389-ds-base-1.2.8 release candidate 2 - git tag 389-ds-base-1.2.8.rc2
|
|
- Bug 689537 - (cov#10610) Fix Coverity NULL pointer dereferences
|
|
- Bug 689866 - ns-newpwpolicy.pl needs to use the new DN format
|
|
- Bug 681015 - RFE: allow fine grained password policy duration attributes
|
|
- in days, hours, minutes, as well
|
|
- Bug 684996 - Exported tombstone cannot be imported correctly
|
|
- Bug 683250 - slapd crashing when traffic replayed
|
|
- Bug 668909 - Can't modify replication agreement in some cases
|
|
- Bug 504803 - Allow maxlogsize to be set if logmaxdiskspace is -1
|
|
- Bug 644784 - Memory leak in "testbind.c" plugin
|
|
- Bug 680558 - Winsync plugin fails to restrain itself to the configured subtree
|
|
|
|
* Mon Mar 7 2011 Caolán McNamara <caolanm@redhat.com> - 1.2.8-0.7.rc1
|
|
- rebuild for icu 4.6
|
|
|
|
* Wed Mar 2 2011 Rich Megginson <rmeggins@redhat.com> - 1.2.8-0.6.rc1
|
|
- 389-ds-base-1.2.8 release candidate 1 - git tag 389-ds-base-1.2.8.rc1
|
|
- Bug 518890 - setup-ds-admin.pl - improve hostname validation
|
|
- Bug 681015 - RFE: allow fine grained password policy duration attributes in
|
|
- days, hours, minutes, as well
|
|
- Bug 514190 - setup-ds-admin.pl --debug does not log to file
|
|
- Bug 680555 - ns-slapd segfaults if I have more than 100 DBs
|
|
- Bug 681345 - setup-ds.pl should set SuiteSpotGroup automatically
|
|
- Bug 674852 - crash in ldap-agent when using OpenLDAP
|
|
- Bug 679978 - modifying attr value crashes the server, which is supposed to
|
|
- be indexed as substring type, but has octetstring syntax
|
|
- Bug 676655 - winsync stops working after server restart
|
|
- Bug 677705 - ds-logpipe.py script is failing to validate "-s" and
|
|
- "--serverpid" options with "-t".
|
|
- Bug 625424 - repl-monitor.pl doesn't work in hub node
|
|
|
|
* Mon Feb 28 2011 Rich Megginson <rmeggins@redhat.com> - 1.2.8-0.5.a3
|
|
- Bug 676598 - 389-ds-base multilib: file conflicts
|
|
- split off libs into a separate -libs package
|
|
|
|
* Thu Feb 24 2011 Rich Megginson <rmeggins@redhat.com> - 1.2.8-0.4.a3
|
|
- do not create /var/run/dirsrv - setup will create it instead
|
|
- remove the fedora-ds initscript upgrade stuff - we do not support that anymore
|
|
- convert the remaining lua stuff to plain old shell script
|
|
|
|
* Wed Feb 9 2011 Rich Megginson <rmeggins@redhat.com> - 1.2.8-0.3.a3
|
|
- 1.2.8.a3 release - git tag 389-ds-base-1.2.8.a3
|
|
- Bug 675320 - empty modify operation with repl on or lastmod off will crash server
|
|
- Bug 675265 - preventryusn gets added to entries on a failed delete
|
|
- Bug 677774 - added support for tmpfiles.d
|
|
- Bug 666076 - dirsrv crash (1.2.7.5) with multiple simple paged result search
|
|
es
|
|
- Bug 672468 - Don't use empty path elements in LD_LIBRARY_PATH
|
|
- Bug 671199 - Don't allow other to write to rundir
|
|
- Bug 678646 - Ignore tombstone operations in managed entry plug-in
|
|
- Bug 676053 - export task followed by import task causes cache assertion
|
|
- Bug 677440 - clean up compiler warnings in 389-ds-base 1.2.8
|
|
- Bug 675113 - ns-slapd core dump in windows_tot_run if oneway sync is used
|
|
- Bug 676689 - crash while adding a new user to be synced to windows
|
|
- Bug 604881 - admin server log files have incorrect permissions/ownerships
|
|
- Bug 668385 - DS pipe log script is executed as many times as the dirsrv serv
|
|
ice is restarted
|
|
- Bug 675853 - dirsrv crash segfault in need_new_pw()
|
|
|
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.8-0.2.a2.1
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
* Thu Feb 3 2011 Rich Megginson <rmeggins@redhat.com> - 1.2.8-0.2.a2
|
|
- 1.2.8.a2 release - git tag 389-ds-base-1.2.8.a2
|
|
- Bug 674430 - Improve error messages for attribute uniqueness
|
|
- Bug 616213 - insufficient stack size for HP-UX on PA-RISC
|
|
- Bug 615052 - intrinsics and 64-bit atomics code fails to compile
|
|
- on PA-RISC
|
|
- Bug 151705 - Need to update Console Cipher Preferences with new ciphers
|
|
- Bug 668862 - init scripts return wrong error code
|
|
- Bug 670616 - Allow SSF to be set for local (ldapi) connections
|
|
- Bug 667935 - DS pipe log script's logregex.py plugin is not redirecting the
|
|
- log output to the text file
|
|
- Bug 668619 - slapd stops responding
|
|
- Bug 624547 - attrcrypt should query the given slot/token for
|
|
- supported ciphers
|
|
- Bug 646381 - Faulty password for nsmultiplexorcredentials does not give any
|
|
- error message in logs
|
|
|
|
* Fri Jan 21 2011 Nathan Kinder <nkinder@redhat.com> - 1.2.8-0.1.a1
|
|
- 1.2.8-0.1.a1 release - git tag 389-ds-base-1.2.8.a1
|
|
- many bug fixes
|
|
|
|
* Thu Dec 16 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.7.5-1
|
|
- 1.2.7.5 release - git tag 389-ds-base-1.2.7.5
|
|
- Bug 663597 - Memory leaks in normalization code
|
|
|
|
* Tue Dec 14 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.7.4-2
|
|
- Resolves: bug 656541 - use %ghost on files in /var/lock
|
|
|
|
* Fri Dec 10 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.7.4-1
|
|
- 1.2.7.4 release - git tag 389-ds-base-1.2.7.4
|
|
- Bug 661792 - Valid managed entry config rejected
|
|
|
|
* Wed Dec 8 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.7.3-1
|
|
- 1.2.7.3 release - git tag 389-ds-base-1.2.7.3
|
|
- Bug 658312 - Invalid free in Managed Entry plug-in
|
|
- Bug 641944 - Don't normalize non-DN RDN values
|
|
|
|
* Fri Dec 3 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.7.2-1
|
|
- 1.2.7.2 release - git tag 389-ds-base-1.2.7.2
|
|
- Bug 659456 - Incorrect usage of ber_printf() in winsync code
|
|
- Bug 658309 - Process escaped characters in managed entry mappings
|
|
- Bug 197886 - Initialize return value for UUID generation code
|
|
- Bug 658312 - Allow mapped attribute types to be quoted
|
|
- Bug 197886 - Avoid overflow of UUID generator
|
|
|
|
* Tue Nov 23 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.7.1-2
|
|
- last commit had bogus commit log
|
|
|
|
* Tue Nov 23 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.7.1-1
|
|
- 1.2.7.1 release - git tag 389-ds-base-1.2.7.1
|
|
- Bug 656515 - Allow Name and Optional UID syntax for grouping attributes
|
|
- Bug 656392 - Remove calls to ber_err_print()
|
|
- Bug 625950 - hash nsslapd-rootpw changes in audit log
|
|
|
|
* Tue Nov 16 2010 Nathan Kinder <nkinder@redhat.com> - 1.2.7-2
|
|
- 1.2.7 release - git tag 389-ds-base-1.2.7
|
|
|
|
* Fri Nov 12 2010 Nathan Kinder <nkinder@redhat.com> - 1.2.7-1
|
|
- Bug 648949 - Merge dirsrv and dirsrv-admin policy modules into base policy
|
|
|
|
* Tue Nov 9 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.7-0.6.a5
|
|
- 1.2.7.a5 release - git tag 389-ds-base-1.2.7.a5
|
|
- Bug 643979 - Strange byte sequence for attribute with no values (nsslapd-ref
|
|
erral)
|
|
- Bug 635009 - Add one-way AD sync capability
|
|
- Bug 572018 - Upgrading from 1.2.5 to 1.2.6.a2 deletes userRoot
|
|
- put replication config entries in separate file
|
|
- Bug 567282 - server can not abandon searchRequest of "simple paged results"
|
|
- Bug 329751 - "nested" filtered roles searches candidates more than needed
|
|
- Bug 521088 - DNA should check ACLs before getting a value from the range
|
|
|
|
* Mon Nov 1 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.7-0.5.a4
|
|
- 1.2.7.a4 release - git tag 389-ds-base-1.2.7.a4
|
|
- Bug 647932 - multiple memberOf configuration adding memberOf where there is
|
|
no member
|
|
- Bug 491733 - dbtest crashes
|
|
- Bug 606545 - core schema should include numSubordinates
|
|
- Bug 638773 - permissions too loose on pid and lock files
|
|
- Bug 189985 - Improve attribute uniqueness error message
|
|
- Bug 619623 - attr-unique-plugin ignores requiredObjectClass on modrdn operat
|
|
ions
|
|
- Bug 619633 - Make attribute uniqueness obey requiredObjectClass
|
|
|
|
* Wed Oct 27 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.7-0.4.a3
|
|
- 1.2.7.a3 release - a2 was never released - this is a rebuild to pick up
|
|
- Bug 644608 - RHDS 8.1->8.2 upgrade fails to properly migrate ACIs
|
|
- Adding the ancestorid fix code to ##upgradednformat.pl.
|
|
|
|
* Fri Oct 22 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.7-0.3.a3
|
|
- 1.2.7.a3 release - a2 was never released
|
|
- Bug 644608 - RHDS 8.1->8.2 upgrade fails to properly migrate ACIs
|
|
- Bug 629681 - Retro Changelog trimming does not behave as expected
|
|
- Bug 645061 - Upgrade: 06inetorgperson.ldif and 05rfc4524.ldif
|
|
- are not upgraded in the server instance schema dir
|
|
|
|
* Tue Oct 19 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.7-0.2.a2
|
|
- 1.2.7.a2 release - a1 was the OpenLDAP testday release
|
|
- git tag 389-ds-base-1.2.7.a2
|
|
- added openldap support on platforms that use openldap with moznss
|
|
- for crypto (F-14 and later)
|
|
- many bug fixes
|
|
- Account Policy Plugin (keep track of last login, disable old accounts)
|
|
|
|
* Fri Oct 8 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.7-0.1.a1
|
|
- added openldap support
|
|
|
|
* Wed Sep 29 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.6.1-3
|
|
- bump rel to rebuild again
|
|
|
|
* Mon Sep 27 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.6.1-2
|
|
- bump rel to rebuild
|
|
|
|
* Thu Sep 23 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.6.1-1
|
|
- This is the 1.2.6.1 release - git tag 389-ds-base-1.2.6.1
|
|
- Bug 634561 - Server crushes when using Windows Sync Agreement
|
|
- Bug 635987 - Incorrect sub scope search result with ACL containing ldap:///self
|
|
- Bug 612264 - ACI issue with (targetattr='userPassword')
|
|
- Bug 606920 - anonymous resource limit- nstimelimit - also applied to "cn=directory manager"
|
|
- Bug 631862 - crash - delete entries not in cache + referint
|
|
|
|
* Thu Aug 26 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.6-1
|
|
- This is the final 1.2.6 release
|
|
|
|
* Tue Aug 10 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.6-0.11.rc7
|
|
- 1.2.6 release candidate 7
|
|
- git tag 389-ds-base-1.2.6.rc7
|
|
- Bug 621928 - Unable to enable replica (rdn problem?) on 1.2.6 rc6
|
|
|
|
* Mon Aug 2 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.6-0.10.rc6
|
|
- 1.2.6 release candidate 6
|
|
- git tag 389-ds-base-1.2.6.rc6
|
|
- Bug 617013 - repl-monitor.pl use cpu upto 90%
|
|
- Bug 616618 - 389 v1.2.5 accepts 2 identical entries with different DN formats
|
|
- Bug 547503 - replication broken again, with 389 MMR replication and TCP errors
|
|
- Bug 613833 - Allow dirsrv_t to bind to rpc ports
|
|
- Bug 612242 - membership change on DS does not show on AD
|
|
- Bug 617629 - Missing aliases in new schema files
|
|
- Bug 619595 - Upgrading sub suffix under non-normalized suffix disappears
|
|
- Bug 616608 - SIGBUS in RDN index reads on platforms with strict alignments
|
|
- Bug 617862 - Replication: Unable to delete tombstone errors
|
|
- Bug 594745 - Get rid of dirsrv_lib_t label
|
|
|
|
* Wed Jul 14 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.6-0.9.rc3
|
|
- make selinux-devel explicit Require the base package in order
|
|
- to comply with Fedora Licensing Guidelines
|
|
|
|
* Thu Jul 1 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.6-0.8.rc3
|
|
- 1.2.6 release candidate 3
|
|
- git tag 389-ds-base-1.2.6.rc3
|
|
- Bug 603942 - null deref in _ger_parse_control() for subjectdn
|
|
- 609256 - Selinux: pwdhash fails if called via Admin Server CGI
|
|
- 578296 - Attribute type entrydn needs to be added when subtree rename switch is on
|
|
- 605827 - In-place upgrade: upgrade dn format should not run in setup-ds-admin.pl
|
|
- Bug 604453 - SASL Stress and Server crash: Program quits with the assertion failure in PR_Poll
|
|
- Bug 604453 - SASL Stress and Server crash: Program quits with the assertion failure in PR_Poll
|
|
- 606920 - anonymous resource limit - nstimelimit - also applied to "cn=directory manager"
|
|
|
|
* Wed Jun 16 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.6-0.7.rc2
|
|
- 1.2.6 release candidate 2
|
|
|
|
* Mon Jun 14 2010 Nathan Kinder <nkinder@redhat.com> - 1.2.6-0.6.rc1
|
|
- install replication session plugin header with devel package
|
|
|
|
* Wed Jun 9 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.6-0.5.rc1
|
|
- 1.2.6 release candidate 1
|
|
|
|
* Tue Jun 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.2.6-0.4.a4.1
|
|
- Mass rebuild with perl-5.12.0
|
|
|
|
* Wed May 26 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.6-0.4.a4
|
|
- 1.2.6.a4 release
|
|
|
|
* Tue Apr 7 2010 Nathan Kinder <nkinder@redhat.com> - 1.2.6-0.4.a3
|
|
- 1.2.6.a3 release
|
|
- add managed entries plug-in
|
|
- many bug fixes
|
|
- moved selinux subpackage into base package
|
|
|
|
* Fri Apr 2 2010 Caolán McNamara <caolanm@redhat.com> - 1.2.6-0.3.a2
|
|
- rebuild for icu 4.4
|
|
|
|
* Mon Mar 2 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.6-0.2.a2
|
|
- 1.2.6.a2 release
|
|
- add support for matching rules
|
|
- many bug fixes
|
|
|
|
* Thu Jan 14 2010 Nathan Kinder <nkinder@redhat.com> - 1.2.6-0.1.a1
|
|
- 1.2.6.a1 release
|
|
- Added SELinux policy and subpackages
|
|
|
|
* Tue Jan 12 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.5-1
|
|
- 1.2.5 final release
|
|
|
|
* Mon Jan 4 2010 Rich Megginson <rmeggins@redhat.com> - 1.2.5-0.5.rc4
|
|
- 1.2.5.rc4 release
|
|
|
|
* Mon Dec 17 2009 Rich Megginson <rmeggins@redhat.com> - 1.2.5-0.4.rc3
|
|
- 1.2.5.rc3 release
|
|
|
|
* Mon Dec 7 2009 Rich Megginson <rmeggins@redhat.com> - 1.2.5-0.3.rc2
|
|
- 1.2.5.rc2 release
|
|
|
|
* Wed Dec 2 2009 Rich Megginson <rmeggins@redhat.com> - 1.2.5-0.2.rc1
|
|
- 1.2.5.rc1 release
|
|
|
|
* Thu Nov 12 2009 Rich Megginson <rmeggins@redhat.com> - 1.2.5-0.1.a1
|
|
- 1.2.5.a1 release
|
|
|
|
* Thu Oct 29 2009 Rich Megginson <rmeggins@redhat.com> - 1.2.4-1
|
|
- 1.2.4 release
|
|
- resolves bug 221905 - added support for Salted MD5 (SMD5) passwords - primarily for migration
|
|
- resolves bug 529258 - Make upgrade remove obsolete schema from 99user.ldif
|
|
|
|
* Mon Sep 14 2009 Rich Megginson <rmeggins@redhat.com> - 1.2.3-1
|
|
- 1.2.3 release
|
|
- added template-initconfig to %files
|
|
- %posttrans now runs update to update the server instances
|
|
- servers are shutdown, then restarted if running before install
|
|
- scriptlets mostly use lua now to pass data among scriptlet phases
|
|
|
|
* Tue Sep 01 2009 Caolán McNamara <caolanm@redhat.com> - 1.2.2-2
|
|
- rebuild with new openssl to fix dependencies
|
|
|
|
* Tue Aug 25 2009 Rich Megginson <rmeggins@redhat.com> - 1.2.2-1
|
|
- backed out - added template-initconfig to %files - this change is for the next major release
|
|
- bump version to 1.2.2
|
|
- fix reopened 509472 db2index all does not reindex all the db backends correctly
|
|
- fix 518520 - pre hashed salted passwords do not work
|
|
- see https://bugzilla.redhat.com/show_bug.cgi?id=518519 for the list of
|
|
- bugs fixed in 1.2.2
|
|
|
|
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.2.1-5
|
|
- rebuilt with new openssl
|
|
|
|
* Wed Aug 19 2009 Noriko Hosoi <nhosoi@redhat.com> - 1.2.1-4
|
|
- added template-initconfig to %files
|
|
|
|
* Wed Aug 12 2009 Rich Megginson <rmeggins@redhat.com> - 1.2.1-3
|
|
- added BuildRequires pcre
|
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
* Mon May 18 2009 Rich Megginson <rmeggins@redhat.com> - 1.2.1-1
|
|
- change name to 389
|
|
- change version to 1.2.1
|
|
- added initial support for numeric string syntax
|
|
- added initial support for syntax validation
|
|
- added initial support for paged results including sorting
|
|
|
|
* Tue Apr 28 2009 Rich Megginson <rmeggins@redhat.com> - 1.2.0-4
|
|
- final release 1.2.0
|
|
- Resolves: bug 475338 - LOG: the intenal type of maxlogsize, maxdiskspace and minfreespace should be 64-bit integer
|
|
- Resolves: bug 496836 - SNMP ldap-agent on Solaris: Unable to open semaphore for server: 389
|
|
- CVS tag: FedoraDirSvr_1_2_0 FedoraDirSvr_1_2_0_20090428
|
|
|
|
* Mon Apr 6 2009 Rich Megginson <rmeggins@redhat.com> - 1.2.0-3
|
|
- re-enable ppc builds
|
|
|
|
* Thu Apr 2 2009 Rich Megginson <rmeggins@redhat.com> - 1.2.0-2
|
|
- exclude ppc builds - needs extensive porting work
|
|
|
|
* Mon Mar 30 2009 Rich Megginson <rmeggins@redhat.com> - 1.2.0-1
|
|
- new release 1.2.0
|
|
- Made devel package depend on mozldap-devel
|
|
- only create run dir if it does not exist
|
|
- CVS tag: FedoraDirSvr_1_2_0_RC1 FedoraDirSvr_1_2_0_RC1_20090330
|
|
|
|
* Mon Oct 30 2008 Noriko Hosoi <nhosoi@redhat.com> - 1.1.3-7
|
|
- added db4-utils to Requires for verify-db.pl
|
|
|
|
* Mon Oct 13 2008 Noriko Hosoi <nhosoi@redhat.com> - 1.1.3-6
|
|
- Enabled LDAPI autobind
|
|
|
|
* Thu Oct 9 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.3-5
|
|
- updated update to patch bug463991-bdb47.patch
|
|
|
|
* Thu Oct 9 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.3-4
|
|
- updated patch bug463991-bdb47.patch
|
|
|
|
* Mon Sep 29 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.3-3
|
|
- added patch bug463991-bdb47.patch
|
|
- make ds work with bdb 4.7
|
|
|
|
* Wed Sep 24 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.3-2
|
|
- rolled back bogus winsync memory leak fix
|
|
|
|
* Tue Sep 23 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.3-1
|
|
- winsync api improvements for modify operations
|
|
|
|
* Fri Jun 13 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.2-1
|
|
- This is the 1.1.2 release. The bugs fixed can be found here
|
|
- https://bugzilla.redhat.com/showdependencytree.cgi?id=452721
|
|
- Added winsync-plugin.h to the devel subpackage
|
|
|
|
* Fri Jun 6 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.1-2
|
|
- bump rev to rebuild and pick up new version of ICU
|
|
|
|
* Fri May 23 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.1-1
|
|
- 1.1.1 release candidate - several bug fixes
|
|
|
|
* Wed Apr 16 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.0.1-4
|
|
- fix bugzilla 439829 - patch to allow working with NSS 3.11.99 and later
|
|
|
|
* Tue Mar 18 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.1.0.1-3
|
|
- add patch to allow server to work with NSS 3.11.99 and later
|
|
- do NSS_Init after fork but before detaching from console
|
|
|
|
* Tue Mar 18 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.1.0.1-3
|
|
- add Requires for versioned perl (libperl.so)
|
|
|
|
* Wed Feb 27 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.0.1-2
|
|
- previous fix for 434403 used the wrong patch
|
|
- this is the right one
|
|
|
|
* Wed Feb 27 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.0.1-1
|
|
- Resolves bug 434403 - GCC 4.3 build fails
|
|
- Rolled new source tarball which includes Nathan's fix for the struct ucred
|
|
- NOTE: Change version back to 1.1.1 for next release
|
|
- this release was pulled from CVS tag FedoraDirSvr110_gcc43
|
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.1.0-5
|
|
- Autorebuild for GCC 4.3
|
|
|
|
* Thu Dec 20 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-4
|
|
- This is the GA release of Fedora DS 1.1
|
|
- Removed version numbers for BuildRequires and Requires
|
|
- Added full URL to source tarball
|
|
|
|
* Fri Dec 07 2007 Release Engineering <rel-eng at fedoraproject dot org> - 1.1.0-3
|
|
- Rebuild for deps
|
|
|
|
* Wed Nov 7 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-2.0
|
|
- This is the beta2 release
|
|
- new file added to package - /etc/sysconfig/dirsrv - for setting
|
|
- daemon environment as is usual in other linux daemons
|
|
|
|
* Thu Aug 16 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.2
|
|
- fix build breakage due to open()
|
|
- mock could not find BuildRequires: db4-devel >= 4.2.52
|
|
- mock works if >= version is removed - it correctly finds db4.6
|
|
|
|
* Fri Aug 10 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.1
|
|
- Change pathnames to use the pkgname macro which is dirsrv
|
|
- get rid of cvsdate in source name
|
|
|
|
* Fri Jul 20 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-0.3.20070720
|
|
- Added Requires for perldap, cyrus sasl plugins
|
|
- Removed template-migrate* files
|
|
- Added perl module directory
|
|
- Removed install.inf - setup-ds.pl can now easily generate one
|
|
|
|
* Mon Jun 18 2007 Nathan Kinder <nkinder@redhat.com> - 1.1.0-0.2.20070320
|
|
- added requires for mozldap-tools
|
|
|
|
* Tue Mar 20 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-0.1.20070320
|
|
- update to latest sources
|
|
- added migrateTo11 to allow migrating instances from 1.0.x to 1.1
|
|
- ldapi support
|
|
- fixed pam passthru plugin ENTRY method
|
|
|
|
* Fri Feb 23 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-0.1.20070223
|
|
- Renamed package to fedora-ds-base, but keep names of paths/files/services the same
|
|
- use the shortname macro (fedora-ds) for names of paths, files, and services instead
|
|
- of name, so that way we can continue to use e.g. /etc/fedora-ds instead of /etc/fedora-ds-base
|
|
- updated to latest sources
|
|
|
|
* Tue Feb 13 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-0.1.20070213
|
|
- More cleanup suggested by Dennis Gilmore
|
|
- This is the fedora extras candidate based on cvs tag FedoraDirSvr110a1
|
|
|
|
* Fri Feb 9 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.el4.20070209
|
|
- latest sources
|
|
- added init scripts
|
|
- use /etc as instconfigdir
|
|
|
|
* Wed Feb 7 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.el4.20070207
|
|
- latest sources
|
|
- moved all executables to _bindir
|
|
|
|
* Mon Jan 29 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.el4.20070129
|
|
- latest sources
|
|
- added /var/tmp/fedora-ds to dirs
|
|
|
|
* Fri Jan 26 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-8.el4.20070125
|
|
- added logconv.pl
|
|
- added slapi-plugin.h to devel package
|
|
- added explicit dirs for /var/log/fedora-ds et. al.
|
|
|
|
* Thu Jan 25 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-7.el4.20070125
|
|
- just move all .so files into the base package from the devel package
|
|
|
|
* Thu Jan 25 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-6.el4.20070125
|
|
- Move the plugin *.so files into the main package instead of the devel
|
|
- package because they are loaded directly by name via dlopen
|
|
|
|
* Fri Jan 19 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-5.el4.20070125
|
|
- Move the script-templates directory to datadir/fedora-ds
|
|
|
|
* Fri Jan 19 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-4.el4.20070119
|
|
- change mozldap to mozldap6
|
|
|
|
* Fri Jan 19 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-3.el4.20070119
|
|
- remove . from cvsdate define
|
|
|
|
* Fri Jan 19 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-2.el4.20070119
|
|
- Having a problem building in Brew - may be Release format
|
|
|
|
* Fri Jan 19 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.el4.cvs20070119
|
|
- Changed version to 1.1.0 and added Release 1.el4.cvs20070119
|
|
- merged in changes from Fedora Extras candidate spec file
|
|
|
|
* Mon Jan 15 2007 Rich Megginson <rmeggins@redhat.com> - 1.1-0.1.cvs20070115
|
|
- Bump component versions (nspr, nss, svrcore, mozldap) to their latest
|
|
- remove unneeded patches
|
|
|
|
* Tue Jan 09 2007 Dennis Gilmore <dennis@ausil.us> - 1.1-0.1.cvs20070108
|
|
- update to a cvs snapshot
|
|
- fedorafy the spec
|
|
- create -devel subpackage
|
|
- apply a patch to use mozldap not mozldap6
|
|
- apply a patch to allow --prefix to work correctly
|
|
|
|
* Mon Dec 4 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-16
|
|
- Fixed the problem where the server would crash upon shutdown in dblayer
|
|
- due to a race condition among the database housekeeping threads
|
|
- Fix a problem with normalized absolute paths for db directories
|
|
|
|
* Tue Nov 28 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-15
|
|
- Touch all of the ldap/admin/src/scripts/*.in files so that they
|
|
- will be newer than their corresponding script template files, so
|
|
- that make will rebuild them.
|
|
|
|
* Mon Nov 27 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-14
|
|
- Chown new schema files when copying during instance creation
|
|
|
|
* Tue Nov 21 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-13
|
|
- Configure will get ldapsdk_bindir from pkg-config, or $libdir/mozldap6
|
|
|
|
* Tue Nov 21 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-12
|
|
- use eval to sed ./configure into ../configure
|
|
|
|
* Tue Nov 21 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-11
|
|
- jump through hoops to be able to run ../configure
|
|
|
|
* Tue Nov 21 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-10
|
|
- Need to make built dir in setup section
|
|
|
|
* Tue Nov 21 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-9
|
|
- The template scripts needed to use @libdir@ instead of hardcoding
|
|
- /usr/lib
|
|
- Use make DESTDIR=$RPM_BUILD_ROOT install instead of % makeinstall
|
|
- do the actual build in a "built" subdirectory, until we remove
|
|
- the old script templates
|
|
|
|
* Thu Nov 16 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-8
|
|
- Make replication plugin link with libdb
|
|
|
|
* Wed Nov 15 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-7
|
|
- Have make define LIBDIR, BINDIR, etc. for C code to use
|
|
- especially for create_instance.h
|
|
|
|
* Tue Nov 14 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-6
|
|
- Forgot to checkin new config.h.in for AC_CONFIG_HEADERS
|
|
|
|
* Tue Nov 14 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-5
|
|
- Add perldap as a Requires; update sources
|
|
|
|
* Thu Nov 9 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-4
|
|
- Fix ds_newinst.pl
|
|
- Remove obsolete #defines
|
|
|
|
* Thu Nov 9 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-3
|
|
- Update sources; rebuild to populate brew yum repo with dirsec-nss
|
|
|
|
* Tue Nov 7 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-2
|
|
- Update sources
|
|
|
|
* Thu Nov 2 2006 Rich Megginson <rmeggins@redhat.com> - 1.0.99-1
|
|
- initial revision
|