- Coverity 12970 - Explicit null dereference - Ticket 47988: Schema learning mechanism, in replication, unable to extend an existing definition - Ticket 47996 - ldclt needs to support SSL Version range - Ticket 47738 - use PL_strcasestr instead of strcasestr - Ticket 47462 - Stop using DES in the reversible password encryption plug-in - Ticket 47807 - SLAPI_REQUESTOR_ISROOT not set for extended operation plugins - Ticket 47991 - upgrade script fails if /etc and /var are on different file systems - Ticket 47989 - Windows Sync accidentally cleared raw_entry - Ticket 47964 - v2 - Incorrect search result after replacing an empty attribute - Ticket 47934 - nsslapd-db-locks modify not taking into account. - Ticket 47617 - replication changelog trimming setting validation - Ticket 47905 - Bad manipulation of passwordhistory - Ticket 47973 - During schema reload sometimes the search returns no results - Ticket 47981 - COS cache doesn't properly mark vattr cache as invalid when there are multiple suffixes - Ticket 47980 - Nested COS definitions can be incorrectly processed - Ticket 47451 - Dynamic plugins - fixed thread synchronization - Ticket 47750 - During delete operation do not refresh cache entry if it is a tombstone - Ticket 47947 - start dirsrv after chrony on RHEL7 and Fedora - fix jenkins warning - Ticket 47526 - Additional fix for ticket 47526 v3 - Ticket 47451 - Add Dynamic Plugin CI Suite - Ticket 47965 - Fix coverity issues (2014/12/16) - Ticket 47451 - Fix jenkins errors - Ticket 47451 - Dynamic Plugin - various fixes - Ticket 47935 - Error: failed to open an LDAP connection to host 'example.org' port '389' as user 'cn=Directory Manager'. Error: unknown. - Ticket 47750 - Need to refresh cache entry after called betxn postop plugins - Ticket 47942 - DS hangs during online total update - Ticket 47960 - cookie_change_info returns random negative number if there was no change in a tree - Ticket 47960 - cookie_change_info returns random negative number if there was no change in a tree - Ticket 47722 - Using the filter file does not work - Ticket 47636 - Error log levels not displayed correctly - Ticket 47965 - Fix coverity issues (2014/11/24) - Ticket 47969 - Fix coverity issue - Ticket 47949 - logconv.pl -- support parsing/showing/reporting different protocol versions - Ticket 47525 - Crash if setting invalid plugin config area for MemberOf Plugin - Ticket 47970 - add lib389 testcase - Ticket 47970 - Account lockout attributes incorrectly updated after failed SASL Bind - Ticket 47969 - COS memory leak when rebuilding the cache - Ticket 47967 - cos_cache_build_definition_list does not stop during server shutdown - Ticket 47451 - Running a plugin task can crash the server - Ticket 47963 - skip nested groups breaks memberof fixup task - Ticket 47963 - RFE - memberOf - add option to skip nested group lookups during delete operations - Ticket 47810 - RI plugin does not return result code if update fails
17 lines
365 B
Bash
17 lines
365 B
Bash
#!/bin/bash
|
|
|
|
DATE=`date +%Y%m%d`
|
|
# use a real tag name here
|
|
VERSION=1.3.3.7
|
|
PKGNAME=389-ds-base
|
|
TAG=${TAG:-$PKGNAME-$VERSION}
|
|
URL="http://git.fedorahosted.org/git/?p=389/ds.git;a=snapshot;h=$TAG;sf=tgz"
|
|
SRCNAME=$PKGNAME-$VERSION
|
|
|
|
wget -O $SRCNAME.tar.gz "$URL"
|
|
|
|
echo convert tgz format to tar.bz2 format
|
|
|
|
gunzip $PKGNAME-$VERSION.tar.gz
|
|
bzip2 $PKGNAME-$VERSION.tar
|