winsync, upgrade, and ruv/counter bug fixes Bug 728510 - Run dirsync after sending updates to AD Bug 729717 - Fatal error messages when syncing deletes from AD Bug 729369 - upgrade DB to upgrade from entrydn to entryrdn format is not working. Bug 729378 - delete user subtree container in AD + modify password in DS == DS crash Bug 723937 - Slapi_Counter API broken on 32-bit F15 fixed again - separate tests for atomic ops and atomic bool cas
24 lines
395 B
Bash
24 lines
395 B
Bash
#!/bin/bash
|
|
|
|
DATE=`date +%Y%m%d`
|
|
# use a real tag name here
|
|
VERSION=1.2.9.6
|
|
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
|