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