The 1.2.9.0 release - several bug fixes Bug 720059 - RDN with % can cause crashes or missing entries Bug 709468 - RSA Authentication Server timeouts when using simple paged results on RHDS 8.2. Bug 691313 - Need TLS/SSL error messages in repl status and errors log Bug 712855 - Directory Server 8.2 logs "Netscape Portable Runtime error -5961 (TCP connection reset by peer.)" to error log whereas Directory Server 8.1 did not Bug 713209 - Update sudo schema Bug 719069 - clean up compiler warnings in 389-ds-base 1.2.9 Bug 718303 - Intensive updates on masters could break the consumer's cache Bug 711679 - unresponsive LDAP service when deleting vlv on replica
17 lines
365 B
Bash
17 lines
365 B
Bash
#!/bin/bash
|
|
|
|
DATE=`date +%Y%m%d`
|
|
# use a real tag name here
|
|
VERSION=1.2.9.0
|
|
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
|