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
24 lines
396 B
Bash
24 lines
396 B
Bash
#!/bin/bash
|
|
|
|
DATE=`date +%Y%m%d`
|
|
# use a real tag name here
|
|
VERSION=1.2.8.a2
|
|
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
|