Ticket #262 - pid file not removed with systemd Ticket #50 - server should not call a plugin after the plugin close function is called Ticket #18 - Data inconsitency during replication Ticket #49 - better handling for server shutdown while long running tasks are active Ticket #15 - Get rid of rwlock.h/rwlock.c and just use slapi_rwlock instead Ticket #257 - repl-monitor doesn't work if leftmost hostnames are the same Ticket #12 - 389 DS DNA Plugin / Replication failing on GSSAPI 6aaeb77 add a hack to disable sasl hostname canonicalization Ticket 168 - minssf should not apply to rootdse Ticket #177 - logconv.pl doesn't detect restarts Ticket #159 - Managed Entry Plugin runs against managed entries upon any update without validating Ticket 75 - Unconfigure plugin opperations are being called. Ticket 26 - Please support setting defaultNamingContext in the rootdse. Ticket #71 - unable to delete managed entry config Ticket #167 - Mixing transaction and non-transaction plugins can cause deadlock Ticket #256 - debug build assertion in ACL_EvalDestroy() Ticket #4 - bak2db gets stuck in infinite loop Ticket #162 - Infinite loop / spin inside strcmpi_fast, acl_read_access_allowed_on_attr, server DoS Ticket #3: acl cache overflown problem Ticket 1 - pre-normalize filter and pre-compile substring regex - and other optimizations Ticket 2 - If node entries are tombstone'd, subordinate entries fail to get the full DN.
24 lines
397 B
Bash
24 lines
397 B
Bash
#!/bin/bash
|
|
|
|
DATE=`date +%Y%m%d`
|
|
# use a real tag name here
|
|
VERSION=1.2.10.a7
|
|
PKGNAME=389-ds-base
|
|
TAG=${TAG:-$PKGNAME-$VERSION}
|
|
#SRCNAME=$PKGNAME-$VERSION-$DATE
|
|
SRCNAME=$PKGNAME-$VERSION
|
|
|
|
echo you must be in the ds git repo to use this
|
|
test -d .git || {
|
|
echo bye
|
|
exit 1
|
|
}
|
|
|
|
if [ -z "$1" ] ; then
|
|
dir=.
|
|
else
|
|
dir="$1"
|
|
fi
|
|
|
|
git archive --prefix=$SRCNAME/ $TAG | bzip2 > $dir/$SRCNAME.tar.bz2
|