Trac Ticket #470 - 389 prevents from adding a posixaccount with userpassword after schema reload Ticket 477 - CLEANALLRUV if there are only winsync agmts task will hang Ticket 457 - dirsrv init script returns 0 even when few or all instances fail to start Ticket 473 - change VERSION.sh to have console version be major.minor Ticket 475 - Root DN Access Control - improve value checking for config Trac Ticket #466 - entry_apply_mod - ADD: Failed to set unhashed#user#password to extension Ticket 474 - Root DN Access Control - days allowed not working correctly Ticket 467 - CLEANALLRUV abort task should be able to ignore down replicas 0b79915 fix compiler warnings in ticket 374 code Ticket 452 - automember rebuild task adds users to groups that do not match the configuration scope
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.11.15
|
|
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
|