1.2.8.a2 release - git tag 389-ds-base-1.2.8.a2 Bug 674430 - Improve error messages for attribute uniqueness Bug 616213 - insufficient stack size for HP-UX on PA-RISC Bug 615052 - intrinsics and 64-bit atomics code fails to compile on PA-RISC Bug 151705 - Need to update Console Cipher Preferences with new ciphers Bug 668862 - init scripts return wrong error code Bug 670616 - Allow SSF to be set for local (ldapi) connections Bug 667935 - DS pipe log script's logregex.py plugin is not redirecting the log output to the text file Bug 668619 - slapd stops responding Bug 624547 - attrcrypt should query the given slot/token for supported ciphers Bug 646381 - Faulty password for nsmultiplexorcredentials does not give any error message in logs
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.2.8.a2
|
|
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
|