f8b7053608
the 389-ds-base-1.2.9.1 release Bug 663752 - Cert renewal for attrcrypt and encchangelog this was "re-fixed" due to a deadlock condition with cl2ldif task cancel Bug 725953 - Winsync: DS entries fail to sync to AD, if the User's CN entry contains a comma Bug 725743 - Make memberOf use PRMonitor for it's operation lock Bug 725542 - Instance upgrade fails when upgrading 389-ds-base package Bug 723937 - Slapi_Counter API broken on 32-bit F15
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.1
|
|
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
|