3a1bbe778f
389-ds-base-1.2.8.0 Bug 693473 - rhds82 rfe - windows_tot_run to log Sizelimit exceeded instead of LDAP error - -1 Bug 692991 - rhds82 - windows_tot_run: failed to obtain data to send to the consumer; LDAP error - -1 Bug 693466 - Unable to change schema online Bug 693503 - matching rules do not inherit from superior attribute type Bug 693455 - nsMatchingRule does not work with multiple values Bug 693451 - cannot use localized matching rules Bug 692331 - Segfault on index update during full replication push on 1.2.7.5
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.8.0
|
|
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
|