Bug 741744 - part3 - MOD operations with chained delete/add get back error 53 1d2f5a0 make memberof transaction aware and able to be a betxnpostoperation plug in b6d3ba7 pass the plugin config entry to the plugin init function 28f7bfb set the ENTRY_POST_OP for modrdn betxnpostoperation plugins Bug 743966 - Compiler warnings in account usability plugin
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.a4
|
|
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
|