389-ds-base-1.2.8 release candidate 1 - git tag 389-ds-base-1.2.8.rc1 Bug 518890 - setup-ds-admin.pl - improve hostname validation Bug 681015 - RFE: allow fine grained password policy duration attributes in days, hours, minutes, as well Bug 514190 - setup-ds-admin.pl --debug does not log to file Bug 680555 - ns-slapd segfaults if I have more than 100 DBs Bug 681345 - setup-ds.pl should set SuiteSpotGroup automatically Bug 674852 - crash in ldap-agent when using OpenLDAP Bug 679978 - modifying attr value crashes the server, which is supposed to be indexed as substring type, but has octetstring syntax Bug 676655 - winsync stops working after server restart Bug 677705 - ds-logpipe.py script is failing to validate "-s" and "--serverpid" options with "-t". Bug 625424 - repl-monitor.pl doesn't work in hub node
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.rc1
|
|
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
|