389-ds-base-1.2.8 release candidate 1 - git tag 389-ds-base-1.2.8.rc1 Bug 518890 - setup-ds-admin.pl - improve hostname validation Bug 681015 - RFE: allow fine grained password policy duration attributes in days, hours, minutes, as well Bug 514190 - setup-ds-admin.pl --debug does not log to file Bug 680555 - ns-slapd segfaults if I have more than 100 DBs Bug 681345 - setup-ds.pl should set SuiteSpotGroup automatically Bug 674852 - crash in ldap-agent when using OpenLDAP Bug 679978 - modifying attr value crashes the server, which is supposed to be indexed as substring type, but has octetstring syntax Bug 676655 - winsync stops working after server restart Bug 677705 - ds-logpipe.py script is failing to validate "-s" and "--serverpid" options with "-t". Bug 625424 - repl-monitor.pl doesn't work in hub node
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.8.rc1
|
|
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
|