This repository has been archived on 2026-01-16. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
389-admin/389-admin-git-local.sh
Rich Megginson d85010ffbe look for separate openldap ldif library
look for separate openldap ldif library
(cherry picked from commit 982560d4f8)
(cherry picked from commit 1508a1a5b5)
(cherry picked from commit 6da9f2919d)
2011-06-28 09:40:11 -06:00

17 lines
337 B
Bash
Executable file

#!/bin/bash
DATE=`date +%Y%m%d`
VERSION=1.1.19
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