- Ticket 447 - Possible to add invalid attribute to nsslapd-allowed-to-delete-attrs - Ticket 47653 - Need a way to allow users to create entries assigned to themselves - Ticket 47647 - remove bogus definition in 60rfc3712.ldif - Ticket 47634 - support AttributeTypeDescription USAGE userApplications distributedOperation dSAOperation - Ticket 47645 - reset stack, op fields to NULL - clean up stacks at shutdown - free unused plugin config entries
17 lines
366 B
Bash
17 lines
366 B
Bash
#!/bin/bash
|
|
|
|
DATE=`date +%Y%m%d`
|
|
# use a real tag name here
|
|
VERSION=1.3.2.10
|
|
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
|