Ticket #281 - TLS not working with latest openldap Ticket #280 - extensible binary filters do not work Ticket #279 - filter normalization does not use matching rules Trac Ticket #275 - Invalid read reported by valgrind Ticket #277 - cannot set repl referrals or state Ticket #278 - Schema replication update failed: Invalid syntax Ticket #39 - Account Policy Plugin does not work for simple binds when PAM Pass Through Auth plugin is enabled Ticket #13 - slapd process exits when put the database on read only mode while updates are coming to the server Ticket #87 - Manpages fixes c493fb4 fix a couple of minor coverity issues Ticket #55 - Limit of 1024 characters for nsMatchingRule Trac Ticket #274 - Reindexing entryrdn fails if ancestors are also tombstoned Ticket #6 - protocol error from proxied auth operation Ticket #38 - nisDomain schema is incorrect Ticket #273 - ruv tombstone searches don't work after reindex entryrdn Ticket #29 - Samba3-schema is missing sambaTrustedDomainPassword Ticket #22 - RFE: Support sendmail LDAP routing schema Ticket #161 - Review and address latest Coverity issues Ticket #140 - incorrect memset parameters Trac Ticket 35 - Log not clear enough on schema errors Trac Ticket 139 - eliminate the use of char *dn in favor of Slapi_DN *dn Trac Ticket #52 - FQDN set to nsslapd-listenhost makes the server start fail if IPv4-mapped-IPv6 address is given
17 lines
368 B
Bash
17 lines
368 B
Bash
#!/bin/bash
|
|
|
|
DATE=`date +%Y%m%d`
|
|
# use a real tag name here
|
|
VERSION=1.2.10.rc1
|
|
PKGNAME=389-ds-base
|
|
TAG=${TAG:-$PKGNAME-$VERSION}
|
|
URL="http://git.fedorahosted.org/git/?p=389/ds.git;a=snapshot;h=$TAG;sf=tgz"
|
|
SRCNAME=$PKGNAME-$VERSION
|
|
|
|
wget -O $SRCNAME.tar.gz "$URL"
|
|
|
|
echo convert tgz format to tar.bz2 format
|
|
|
|
gunzip $PKGNAME-$VERSION.tar.gz
|
|
bzip2 $PKGNAME-$VERSION.tar
|