NRUV Ticket #360 - ldapmodify returns Operations error Ticket #321 - krbExtraData is being null modified and replicated on each ssh login Trac Ticket #359 - Database RUV could mismatch the one in changelog under the stress Ticket #361: Bad DNs in ACIs can segfault ns-slapd Trac Ticket #338 - letters in object's cn get converted to lowercase when renaming object Ticket #337 - Improve CLEANRUV task (cherry picked from commit 21635dcd44f96846bb8158963508374f489a355c)
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.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
|