summaryrefslogtreecommitdiffstats
path: root/ldap
Commit message (Collapse)AuthorAgeFilesLines
...
* 155460 - Remove crypt password storage from windows buildNathan Kinder2005-04-206-8/+15
|
* Bug(s) fixed: 155087Rich Megginson2005-04-201-0/+4
| | | | | | | | | | | | Bug Description: performance counters gone after replication initialization Reviewed by: Nathan, Noriko, and David (Thanks!) Fix Description: There is a state flag in the backend object. When repl init starts, the bulk import start code eventually calls dblayer_instance_close which does some closure of the backend, including setting the state flag to STOPPED. However, when repl init completes, the bulk import code eventually calls dblayer_instance_start which does not set the state flag. The only place where the state flag is set is in ldbm_instance_start (which also calls dblayer_instance_start). From my brief investigation, it doesn't appear that ldbm_instance_stop and start are all that useful - they only deal with changing the state flag to stopped or started, and that is used in very few places, the monitor code being one of them. This fix makes it "symmetrical" e.g. you undo in dblayer_instance_start what was done in dblayer_instance_close. A better solution might be to call ldbm_instance_stop instead of dblayer_instance_close from bulk_import_start and remove the code to set the state to stopped from dblayer_instance_close. Then do the same in import_all_done - call ldbm_instance_start instead of dblayer_instance_start. The only difference is the locking for be_state_lock - perhaps some programmer decided to use the dblayer function instead of the ldbm function to avoid deadlock? But I don't think doing that would introduce any more chances of deadlock. The other problem with this is that ldbm_instance_stop deletes the cache, while dblayer_instance_close merely cleans it out. Platforms tested: RHEL3 Flag Day: no Doc impact: no QA impact: should be covered by regular nightly and manual testing New Tests integrated into TET: none
* Fixed copyright block errorNathan Kinder2005-04-192-77/+1
|
* Fixed licensing typoNathan Kinder2005-04-191548-1571/+4678
|
* Removed ldaptags and Whos Online referencesNathan Kinder2005-04-192-17/+1
|
* Bug(s) fixed: 153955Rich Megginson2005-04-191-5/+20
| | | | | | | | | | | Bug Description: RPM install: A suffix must be a valid DN Reviewed by: Noriko (Thanks!) Fix Description: Rob found that the setup script did not work on his box. It seems that there is no canonical way to get the FQDN. So, this fix uses various different ways - hostname, hostname -f, hostname -a, and host `hostname` - and just uses the longest one, assuming it is the FQDN. Platforms tested: RHEL3 Flag Day: no Doc impact: no QA impact: should be covered by regular nightly and manual testing New Tests integrated into TET: none
* Fix mapping of seeAlso and secretary attributesDavid Boreham2005-04-191-3/+0
|
* [155132] Attribute Encryption, Add, online help uses wrong font / mis-formatted.Noriko Hosoi2005-04-181-33/+35
|
* [155133] Attribute Encryption, select encryption method, online help uses ↵Noriko Hosoi2005-04-181-33/+35
| | | | wrong font / mis-formatted.
* HP-UX IPF Porting changesNathan Kinder2005-04-1819-27/+126
|
* Use separate attribute maps for NT4 and AD. Fix 155266David Boreham2005-04-181-7/+22
|
* remove bogus logging fix bug#154261David Boreham2005-04-182-4/+4
|
* remove redundant source file and associated Makefile lineDavid Boreham2005-04-182-751/+0
|
* [155137] SASL mapping online help not in correct formatNoriko Hosoi2005-04-181-33/+44
| | | | | The online help file did not inherit the right format. Replaced the header part with the same one the rest is using.
* [155140] SASL mapping modify online help not in correct formatNoriko Hosoi2005-04-181-33/+44
| | | | | The online help file did not inherit the right format. Replaced the header part with the same one the rest is using.
* [155066] Typo in properties editor online help; removed '.'Noriko Hosoi2005-04-161-1/+1
|
* Take out old code that was #defined outDavid Boreham2005-04-151-7/+0
|
* Fix initial RUV logic and add support for Win2003David Boreham2005-04-152-13/+56
|
* 155068 - Added license to source filesNathan Kinder2005-04-151549-10/+46521
|
* 154948 - Fixed fractional repl crashNathan Kinder2005-04-151-1/+1
|
* Fix RUV updating codeDavid Boreham2005-04-154-82/+90
|
* Fix instability in re-try and backoff mechanismDavid Boreham2005-04-158-210/+330
|
* [154909] Fixed old copyright notice and removed the link to DocHome.Noriko Hosoi2005-04-158-30/+68
|
* Fixes for windows sync for NT4David Boreham2005-04-147-78/+289
|
* [154775] Replica Settings page contains 4.0 and 4.1 supplier server.Noriko Hosoi2005-04-141-1/+1
|
* [154766] Online help mentions "this ( 6.2 ) directory serverNoriko Hosoi2005-04-141-5/+18
|
* Fix processing of base-64 encoded dataDavid Boreham2005-04-142-5/+6
|
* Bug(s) fixed: 154431Rich Megginson2005-04-111-1/+16
| | | | | | | | | | | Bug Description: Security package requests from Cert Team Reviewed by: Nathan (Thanks!) Fix Description: Exclude the nssckbi file from shared32/lib; Create the shell script wrappers for shlibsign and shared32 modutil. Platforms tested: RHEL3 Flag Day: no Doc impact: no QA impact: should be covered by regular nightly and manual testing New Tests integrated into TET: none
* Allow the migration scripts to recognize the Red Hat-branded server.Thomas Lackey2005-04-113-6/+21
|
* Merge fixes to DSMLGW post-axis-version-changeDavid Boreham2005-04-117-9/+76
|
* [154288] usage cleanupNoriko Hosoi2005-04-091-149/+173
|
* Added more support for building from source, specifically support forRich Megginson2005-04-081-1/+1
| | | | NET-SNMP. Also a couple of minor clean up items.
* Bug(s) fixed: 154235Rich Megginson2005-04-081-2/+0
| | | | | | | | | | | Bug Description: HP wants automounter schema removed Reviewed by: Nathan (Thanks!) Fix Description: We must have picked up an old version of the rfc2307 schema that had the automount stuff in it which has been removed. This fix just removes the automount stuff. Platforms tested: RHEL3 Flag Day: no Doc impact: no QA impact: should be covered by regular nightly and manual testing New Tests integrated into TET: none
* 154077 - Check for version 1.4.2.07 of JRE on HP-UXNathan Kinder2005-04-081-1/+1
|
* Bug(s) fixed: 154064Rich Megginson2005-04-071-2/+36
| | | | | | | | | | | | | Bug Description: RPM setup should prompt for install mode Reviewed by: Nathan (Thanks!) Files: see diff Branch: HEAD Fix Description: Added a new shell function ask123 to ask the user for the install mode. Use the -m mode argument to ns-config. Platforms tested: RHEL3 Flag Day: no Doc impact: no QA impact: should be covered by regular nightly and manual testing New Tests integrated into TET: none
* [154068] RPM setup should run with the relative path as well as the absolute ↵Noriko Hosoi2005-04-061-1/+14
| | | | path
* Run acceptance in the backgroundNathan Kinder2005-04-061-1/+1
|
* setup/setup was being installed as setup/setup/setupRich Megginson2005-04-061-1/+1
|
* Acceptance and ships fixes for RPMsNathan Kinder2005-04-061-1/+12
|
* Bug(s) fixed: 145179Rich Megginson2005-04-061-0/+7
| | | | | | | | | | | Bug Description: RPM install: A suffix must be a valid DN Reviewed by: Nathan (Thanks!) Fix Description: Try to get the FQDN for the default. If nothing else, use localhost.localdomain Platforms tested: RHEL3 Flag Day: no Doc impact: no QA impact: should be covered by regular nightly and manual testing New Tests integrated into TET: none
* Make RPM binary name .opt.rpm or .dbg.rpm depending on build flavorRich Megginson2005-04-061-1/+6
|
* Change password sync copyright notices, merge fixes to password sync codeDavid Boreham2005-04-0520-257/+417
|
* New RPM packaging optionssvrbld2005-04-051-1/+40
|
* Fix DSMLGW test failuresDavid Boreham2005-04-051-1/+15
|
* Bug(s) fixed: 153686Rich Megginson2005-04-051-0/+7
| | | | | | | | | | | Bug Description: New setup script displays wrong location if installing in non-default path Reviewed by: Nathan (Thanks!) Fix Description: Matt showed me a better way to get the prefix. These diffs also allow setup to be run from any directory so you don't have to cd serverroot to run it. I added uninstall support. uninstall is run in a preun script. I added initial support for doing multi platform builds in the same root. Platforms tested: RHEL3 Flag Day: no Doc impact: no QA impact: should be covered by regular nightly and manual testing New Tests integrated into TET: none
* Pickup new doc files.Thomas Lackey2005-04-052-0/+19
|
* Updated readme file plus new admin serverNathan Kinder2005-04-051-14/+6
|
* Add new sync wizard help pages. Alter text of repl4 (summary) wizard page.Thomas Lackey2005-04-058-11/+987
|
* [Bug 153306] dbscan of changelog files core dumps on Solairs 64 bit builds.Noriko Hosoi2005-04-041-6/+13
| | | | The width of time in changelog is always 4 bytes.
* Update dsktune version dateNathan Kinder2005-04-041-1/+1
|