389-admin-1.1.20 - many migration + tls/ssl fixes Bug 719056 - migrate-ds-admin.pl needs to update SELinux policy Bug 718285 - AdminServer should use "service" command instead of start/stop/restart scripts Bug 718079 - Perl errors when running migrate-ds-admin.pl Bug 713000 - Migration stops if old admin server cannot be stopped added tests for the security cgi fix typo in NSS_Shutdown warning message better NSS error handling - reduce memory leaks Bug 710372 - Not able to open the Manage Certificate from DS-console
16 lines
367 B
Bash
Executable file
16 lines
367 B
Bash
Executable file
#!/bin/bash
|
|
|
|
DATE=`date +%Y%m%d`
|
|
VERSION=1.1.20
|
|
PKGNAME=389-admin
|
|
#SRCNAME=$PKGNAME-$VERSION-$DATE
|
|
SRCNAME=$PKGNAME-$VERSION
|
|
TAG=${PKGNAME}-${VERSION}
|
|
URL="http://git.fedorahosted.org/git/?p=389/admin.git;a=snapshot;h=$TAG;sf=tgz"
|
|
|
|
wget -O $SRCNAME.tar.gz "$URL"
|
|
|
|
echo convert tgz format to tar.bz2 format
|
|
|
|
gunzip $PKGNAME-$VERSION.tar.gz
|
|
bzip2 $PKGNAME-$VERSION.tar
|