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
24 lines
401 B
Bash
24 lines
401 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}
|
|
#SRCNAME=$PKGNAME-$VERSION-$DATE
|
|
SRCNAME=$PKGNAME-$VERSION
|
|
|
|
test -d .git || {
|
|
echo you must be in the ds git repo to use this
|
|
echo bye
|
|
exit 1
|
|
}
|
|
|
|
if [ -z "$1" ] ; then
|
|
dir=.
|
|
else
|
|
dir="$1"
|
|
fi
|
|
|
|
git archive --prefix=$SRCNAME/ $TAG | bzip2 > $dir/$SRCNAME.tar.bz2
|