- This is the final 1.1.13 release
- git tag 389-admin-1.1.13
- Bug 656441 - Missing library path entry causes LD_PRELOAD error
- setup-ds-admin.pl -u exits with ServerAdminID and as_uid related error
(cherry picked from commit 11e3805d9c)
17 lines
337 B
Bash
Executable file
17 lines
337 B
Bash
Executable file
#!/bin/bash
|
|
|
|
DATE=`date +%Y%m%d`
|
|
VERSION=1.1.13
|
|
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
|