389-ds-base-1.2.8 release candidate 2 - git tag 389-ds-base-1.2.8.rc2 Bug 689537 - (cov#10610) Fix Coverity NULL pointer dereferences Bug 689866 - ns-newpwpolicy.pl needs to use the new DN format Bug 681015 - RFE: allow fine grained password policy duration attributes in days, hours, minutes, as well Bug 684996 - Exported tombstone cannot be imported correctly Bug 683250 - slapd crashing when traffic replayed Bug 668909 - Can't modify replication agreement in some cases Bug 504803 - Allow maxlogsize to be set if logmaxdiskspace is -1 Bug 644784 - Memory leak in "testbind.c" plugin Bug 680558 - Winsync plugin fails to restrain itself to the configured subtree
17 lines
367 B
Bash
17 lines
367 B
Bash
#!/bin/bash
|
|
|
|
DATE=`date +%Y%m%d`
|
|
# use a real tag name here
|
|
VERSION=1.2.8.rc2
|
|
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
|