Ticket 48988 - ds_removal and ds_unregister should support prompting for password bump version to 1.1.44 Bug 1236635 - 389-admin TPS srpmtest failure Ticket 48932 - stopping admin server stops all httpd processes Ticket 47413 - 389-admin fails to build with latest httpd Ticket 48931 - start-ds-admin should use systemctl Ticket 48823 - Admin Server - Add IPv6 support Ticket 48907 - register-ds-admin fails to find local config DS Ticket 48306 - perl module conditional test is not conditional when checking SELinux policies Ticket 48213 - Admin server registration requires anonymous binds bump version to 1.1.43 Ticket 48429 - running remove-ds-admin.pl multiple times will make it so you cannot install DS Ticket 48410 - 389-admin - Unable to remove / unregister a DS instance from admin server Ticket 48409 - RHDS upgrade change Ownership of certificate files upon upgrade. Ticket 47840 - Fix setup-ds-admin.pl to create adm.conf with sbin scripts
17 lines
337 B
Bash
Executable file
17 lines
337 B
Bash
Executable file
#!/bin/bash
|
|
|
|
DATE=`date +%Y%m%d`
|
|
VERSION=1.1.45
|
|
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
|