git tag 389-ds-base-1.2.6.rc6 Bug 617013 - repl-monitor.pl use cpu upto 90% Bug 616618 - 389 v1.2.5 accepts 2 identical entries with different DN formats Bug 547503 - replication broken again, with 389 MMR replication and TCP error Bug 613833 - Allow dirsrv_t to bind to rpc ports Bug 612242 - membership change on DS does not show on AD Bug 617629 - Missing aliases in new schema files Bug 619595 - Upgrading sub suffix under non-normalized suffix disappears Bug 616608 - SIGBUS in RDN index reads on platforms with strict alignments Bug 617862 - Replication: Unable to delete tombstone errors Bug 594745 - Get rid of dirsrv_lib_t label
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.6.rc6
|
|
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
|