5402445982
Ticket 47599 - Reduce lock scope in retro changelog plug-in Ticket 47596 - attrcrypt fails to find unlocked key Ticket 47598 - Convert ldbm_back_seq code to be transaction aware Ticket 47597 - Convert retro changelog plug-in to betxn Ticket 47585 - Replication Failures related to skipped entries due to cleaned rids Ticket 47588 - Compiler warnings building on F19 Ticket 47581 - Winsync plugin segfault during incremental backoff (phase 2) Ticket 47581 - Winsync plugin segfault during incremental backoff Ticket 47577 - crash when removing entries from cache 6b16d30 Revert "Ticket #47559 hung server - related to sasl and initialize"
24 lines
399 B
Bash
24 lines
399 B
Bash
#!/bin/bash
|
|
|
|
DATE=`date +%Y%m%d`
|
|
# use a real tag name here
|
|
VERSION=1.3.2.4
|
|
PKGNAME=389-ds-base
|
|
TAG=${TAG:-$PKGNAME-$VERSION}
|
|
#SRCNAME=$PKGNAME-$VERSION-$DATE
|
|
SRCNAME=$PKGNAME-$VERSION
|
|
|
|
test -d .git || {
|
|
echo you must be in the ds git repo to use this
|
|
echo bye
|
|
exit 1
|
|
}
|
|
|
|
if [ -z "$1" ] ; then
|
|
dir=.
|
|
else
|
|
dir="$1"
|
|
fi
|
|
|
|
git archive --prefix=$SRCNAME/ $TAG | bzip2 > $dir/$SRCNAME.tar.bz2
|