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
24 lines
395 B
Bash
24 lines
395 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}
|
|
#SRCNAME=$PKGNAME-$VERSION-$DATE
|
|
SRCNAME=$PKGNAME-$VERSION
|
|
|
|
echo you must be in the ds git repo to use this
|
|
test -d .git || {
|
|
echo bye
|
|
exit 1
|
|
}
|
|
|
|
if [ -z "$1" ] ; then
|
|
dir=.
|
|
else
|
|
dir="$1"
|
|
fi
|
|
|
|
git archive --prefix=$SRCNAME/ $TAG | bzip2 > $dir/$SRCNAME.tar.bz2
|