edd526aaeb
1.2.7.a4 release - git tag 389-ds-base-1.2.7.a4 Bug 647932 - multiple memberOf configuration adding memberOf where there is no member Bug 491733 - dbtest crashes Bug 606545 - core schema should include numSubordinates Bug 638773 - permissions too loose on pid and lock files Bug 189985 - Improve attribute uniqueness error message Bug 619623 - attr-unique-plugin ignores requiredObjectClass on modrdn operat ions Bug 619633 - Make attribute uniqueness obey requiredObjectClass
24 lines
396 B
Bash
24 lines
396 B
Bash
#!/bin/bash
|
|
|
|
DATE=`date +%Y%m%d`
|
|
# use a real tag name here
|
|
VERSION=1.2.7.a4
|
|
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
|