winsync, upgrade, and ruv/counter bug fixes Bug 728510 - Run dirsync after sending updates to AD Bug 729717 - Fatal error messages when syncing deletes from AD Bug 729369 - upgrade DB to upgrade from entrydn to entryrdn format is not working. Bug 729378 - delete user subtree container in AD + modify password in DS == DS crash Bug 723937 - Slapi_Counter API broken on 32-bit F15 fixed again - separate tests for atomic ops and atomic bool cas
17 lines
365 B
Bash
17 lines
365 B
Bash
#!/bin/bash
|
|
|
|
DATE=`date +%Y%m%d`
|
|
# use a real tag name here
|
|
VERSION=1.2.9.6
|
|
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
|