- f2004ea compiler warning - ldif_read_record lineno type depends on openldap version - Ticket #47413 389-admin fails to build with latest httpd - 2a67826 add more debugging for SSL connection problems - Ticket #47465 problem with 389-adminutil detection in m4/adminutil.m4 in 389-admin and 389-dsgw - Ticket #47486 compiler warnings in adminutil, admin, dsgw - 14b1bf9 ignore files generated by Eclipse - Ticket 47467 - Improve CRL import error messages - Ticket 362 - Directory Console generates insufficient key strength - Ticket 47466 - Importing CA cert with existing name crashes security CGI - Ticket 47468 - Change security password validation error is out of order - Ticket #47334 - Avoid quoting all settings in console.conf - Ticket #47333 - Relabel lockfile when starting Admin Server - Ticket #47298 - remove-ds-admin.pl does not stop the admin server - Ticket #567 - Restart of Admin server from console fails on segfault
17 lines
337 B
Bash
Executable file
17 lines
337 B
Bash
Executable file
#!/bin/bash
|
|
|
|
DATE=`date +%Y%m%d`
|
|
VERSION=1.1.35
|
|
PKGNAME=389-admin
|
|
TAG=${TAG:-$PKGNAME-$VERSION}
|
|
SRCNAME=${PKGNAME}-${VERSION}
|
|
echo you must be in the admin server 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
|