git tag 389-ds-base-1.2.6.rc6 Bug 617013 - repl-monitor.pl use cpu upto 90% Bug 616618 - 389 v1.2.5 accepts 2 identical entries with different DN formats Bug 547503 - replication broken again, with 389 MMR replication and TCP error Bug 613833 - Allow dirsrv_t to bind to rpc ports Bug 612242 - membership change on DS does not show on AD Bug 617629 - Missing aliases in new schema files Bug 619595 - Upgrading sub suffix under non-normalized suffix disappears Bug 616608 - SIGBUS in RDN index reads on platforms with strict alignments Bug 617862 - Replication: Unable to delete tombstone errors Bug 594745 - Get rid of dirsrv_lib_t label
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.6.rc6
|
|
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
|