ab051d4541
Ticket #387 - managed entry sometimes doesn't delete the managed entry 5903815 improve txn test index handling Ticket #360 - ldapmodify returns Operations error - fix delete caching bcfa9e3 Coverity Fix Trac Ticket #335 - transaction retries need to be cache aware Ticket #389 - ADD operations not in audit log 44cdc84 fix coverity issues with uninit vals, no return checking 1b4b9d5 Ticket 368 - Make the cleanAllRUV task one step 8f17da5 Ticket #110 - RFE limiting root DN by host, IP, time of day, day of week
24 lines
400 B
Bash
24 lines
400 B
Bash
#!/bin/bash
|
|
|
|
DATE=`date +%Y%m%d`
|
|
# use a real tag name here
|
|
VERSION=1.2.11.5
|
|
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
|