Bug 755725 - 389 programs linked against openldap crash during shutdown Bug 755754 - Unable to start dirsrv service using systemd Bug 745259 - Incorrect entryUSN index under high load in replicated environment d439e3a use slapi_hexchar2int and slapi_str_to_u8 everywhere 5910551 csn_init_as_string should not use sscanf b53ba00 reduce calls to csn_as_string and slapi_log_error c897267 fix member variable name error in slapi_uniqueIDFormat 66808e5 uniqueid formatting - use slapi_u8_to_hex instead of sprintf 580a875 csn_as_string - use slapi_uN_to_hex instead of sprintf Bug 751645 - crash when simple paged fails to send entry to client Bug 752155 - Use restorecon after creating init script lock file
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.10.a6
|
|
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
|