997a433718
Ticket #47534 - RUV tombstone search with scope "one" doesn`t work Ticket 47510 - 389-ds-base does not compile against MozLDAP libraries Ticket #47523 - Set up replcation/agreement before initializing the sub suffix, the sub suffix is not found by ldapsearch Ticket 47528 - 389-ds-base built with mozldap can crash from invalid free Ticket #47504 idlistscanlimit per index/type/value Ticket 47513 - tmpfiles.d references /var/lock when they should reference /run/lock Ticket #47492 - PassSync removes User must change password flag on the Windows side Ticket 47509 - CLEANALLRUV doesnt run across all replicas Ticket #47516 replication stops with excessive clock skew 6829200 Coverity fix - 11952 - for Ticket 47512 Ticket 47512 - backend txn plugin fixup tasks should be done in a txn (cherry picked from commit 1edb272d2c60a2e00e2e426094bdad2ad0c87102) (cherry picked from commit a41e44d78d365c3b15b7c5303930808a97b2e5f3)
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.3.1.10
|
|
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
|