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)
17 lines
366 B
Bash
17 lines
366 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}
|
|
URL="http://git.fedorahosted.org/git/?p=389/ds.git;a=snapshot;h=$TAG;sf=tgz"
|
|
SRCNAME=$PKGNAME-$VERSION
|
|
|
|
wget -O $SRCNAME.tar.gz "$URL"
|
|
|
|
echo convert tgz format to tar.bz2 format
|
|
|
|
gunzip $PKGNAME-$VERSION.tar.gz
|
|
bzip2 $PKGNAME-$VERSION.tar
|