Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 161180 Details for
Bug 251549
Change filesystem path naming from "fedora-ds" to "dirsrv"
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
diffs - ldapserver
cvsdiffs (text/plain), 6.63 KB, created by
Rich Megginson
on 2007-08-13 15:06:24 UTC
(
hide
)
Description:
diffs - ldapserver
Filename:
MIME Type:
Creator:
Rich Megginson
Created:
2007-08-13 15:06:24 UTC
Size:
6.63 KB
patch
obsolete
>Index: ldapserver/configure.ac >=================================================================== >RCS file: /cvs/dirsec/ldapserver/configure.ac,v >retrieving revision 1.35 >diff -u -8 -r1.35 configure.ac >--- ldapserver/configure.ac 2 Aug 2007 14:39:00 -0000 1.35 >+++ ldapserver/configure.ac 13 Aug 2007 15:05:51 -0000 >@@ -1,13 +1,13 @@ > # -*- Autoconf -*- > # Process this file with autoconf to produce a configure script. > AC_PREREQ(2.59) > # This version is the version returned by ns-slapd -v >-AC_INIT([fedora-ds], [1.1.0a4], [http://bugzilla.redhat.com/]) >+AC_INIT([dirsrv], [1.1.0b1], [http://bugzilla.redhat.com/]) > # AC_CONFIG_HEADER must be called right after AC_INIT. > AC_CONFIG_HEADERS([config.h]) > AM_INIT_AUTOMAKE([1.9 foreign subdir-objects]) > AM_MAINTAINER_MODE > AC_CANONICAL_HOST > > # Checks for programs. > AC_PROG_CXX >Index: ldapserver/ldap/servers/slapd/test-plugins/README >=================================================================== >RCS file: /cvs/dirsec/ldapserver/ldap/servers/slapd/test-plugins/README,v >retrieving revision 1.8 >diff -u -8 -r1.8 README >--- ldapserver/ldap/servers/slapd/test-plugins/README 15 Dec 2006 00:22:54 -0000 1.8 >+++ ldapserver/ldap/servers/slapd/test-plugins/README 13 Aug 2007 15:05:51 -0000 >@@ -183,27 +183,27 @@ > > Plugging the Library Into the Server > ------------------------------------ > When started, the server loads plug-ins. > > 1. Stop the server. > > Console: Select the server; Object > Stop Server >- Command Line: cd [prefix]/usr/lib/<brand>-ds/slapd-[serverID] ; ./stop-slapd >+ Command Line: cd [prefix]/usr/lib/<PACKAGE_NAME>/slapd-[serverID] ; ./stop-slapd > > 2. Add the entry for the server plug-in to > [prefix]/var/lib/slapd-[serverID]/dse.ldif. For example: > > dn: cn=[My Server Plugin],cn=plugins,cn=config > objectClass: top > objectClass: nsSlapdPlugin > objectClass: extensibleObject > cn: [My Server Plugin] >- nsslapd-pluginPath: [[prefix]/usr/lib/<brand>-ds/plugins/myveryown-plugin.so] >+ nsslapd-pluginPath: [[prefix]/usr/lib/<PACAKGE_NAME>/plugins/myveryown-plugin.so] > nsslapd-pluginInitfunc: [my_plugin_init] > nsslapd-pluginType: [myPluginType] > nsslapd-pluginEnabled: on > nsslapd-pluginarg0: [uid] > nsslapd-pluginarg1: [mail] > nsslapd-pluginarg2: [...] > nsslapd-plugin-depends-on-type: [anotherPluginType] > nsslapd-pluginId: [MyFirstServerPlugin] >@@ -212,9 +212,9 @@ > nsslapd-pluginDescription: [Add lots of cool functionality] > > See the Parameter Block Reference in the Red Hat Directory Server > Plug-In Programmer's Guide for hints on plug-in types. > > 3. Restart the server. > > Console: Object > Start Server >- Command Line: cd [prefix]/usr/lib/<brand>-ds/slapd-[serverID] ; ./restart-slapd >+ Command Line: cd [prefix]/usr/lib/<PACKAGE_NAME>/slapd-[serverID] ; ./restart-slapd >Index: ldapserver/ldap/servers/slapd/test-plugins/sampletask.c >=================================================================== >RCS file: /cvs/dirsec/ldapserver/ldap/servers/slapd/test-plugins/sampletask.c,v >retrieving revision 1.1 >diff -u -8 -r1.1 sampletask.c >--- ldapserver/ldap/servers/slapd/test-plugins/sampletask.c 15 Dec 2006 00:22:54 -0000 1.1 >+++ ldapserver/ldap/servers/slapd/test-plugins/sampletask.c 13 Aug 2007 15:05:51 -0000 >@@ -34,25 +34,25 @@ > * All rights reserved. > * END COPYRIGHT BLOCK **/ > > /* > * sample task plugin > * > * [How to set up the plugin for testing] > * 1. compile and package with the other plugins >- * 2. put the plugin libsampletask-plugin.so at <prefix>/usr/lib/<brand>-ds/plugins >+ * 2. put the plugin libsampletask-plugin.so at <prefix>/usr/lib/<PACKAGE_NAME>/plugins > * 3. register it as a plugin in dse.ldif > * Plugin entry: > * dn: cn=sampletask,cn=plugins,cn=config > * objectClass: top > * objectClass: nsSlapdPlugin > * objectClass: extensibleObject > * cn: sampletask >- * nsslapd-pluginPath: <prefix>/usr/lib/<brand>-ds/plugins/libsampletask-plugin.so >+ * nsslapd-pluginPath: <prefix>/usr/lib/<PACKAGE_NAME>/plugins/libsampletask-plugin.so > * nsslapd-pluginInitfunc: sampletask_init > * nsslapd-pluginType: object > * nsslapd-pluginEnabled: on > * nsslapd-pluginId: sampletask > * nsslapd-pluginVersion: <plugin_version> > * nsslapd-pluginVendor: <vendor name> > * nsslapd-pluginDescription: Sample task plugin > * >Index: ldapserver/ldap/servers/slapd/tools/dbscan.c >=================================================================== >RCS file: /cvs/dirsec/ldapserver/ldap/servers/slapd/tools/dbscan.c,v >retrieving revision 1.15 >diff -u -8 -r1.15 dbscan.c >--- ldapserver/ldap/servers/slapd/tools/dbscan.c 10 Nov 2006 23:45:51 -0000 1.15 >+++ ldapserver/ldap/servers/slapd/tools/dbscan.c 13 Aug 2007 15:05:52 -0000 >@@ -745,17 +745,17 @@ > printf(" -l <size> max length of dumped id list\n"); > printf(" (default %d; 40 bytes <= size <= 1048576 bytes)\n", > MAX_BUFFER); > printf(" -G <n> only display index entries with more than <n> ids\n"); > printf(" -n display idl lengths\n"); > printf(" -r display the conents of idl\n"); > printf(" -s Summary of index counts\n"); > printf(" sample usages:\n"); >- printf(" # set <prefix>/usr/lib/<brand-ds>:<prefix>/usr/lib:/usr/lib in the library path\n"); >+ printf(" # set <prefix>/usr/lib/<PACKAGE_NAME>:<prefix>/usr/lib:/usr/lib in the library path\n"); > printf(" # dump the entry file\n"); > printf(" %s -f id2entry.db\n", argv0); > printf(" # display index keys in cn.db4\n"); > printf(" %s -f cn.db4\n", argv0); > printf(" # display index keys and the count of entries having the key in mail.db4\n"); > printf(" %s -r -f mail.db4\n", argv0); > printf(" # display index keys and the IDs having more than 20 IDs in sn.db4\n"); > printf(" %s -r -G 20 -f sn.db4\n", argv0); >Index: ldapserver/wrappers/initscript.in >=================================================================== >RCS file: /cvs/dirsec/ldapserver/wrappers/initscript.in,v >retrieving revision 1.5 >diff -u -8 -r1.5 initscript.in >--- ldapserver/wrappers/initscript.in 16 Mar 2007 23:06:58 -0000 1.5 >+++ ldapserver/wrappers/initscript.in 13 Aug 2007 15:05:52 -0000 >@@ -1,14 +1,14 @@ > #!/bin/sh > # > # @package_name@ This starts and stops @package_name@ > # > # chkconfig: - 21 79 >-# description: @package_name@ Directory Server >+# description: @capbrand@ Directory Server > # processname: @sbindir@/ns-slapd > # configdir: @sysconfdir@/@package_name@/ > # piddir: @localstatedir@/run/@package_name@ > # datadir: @localstatedir@/lib/@package_name@/slapd-<instance name> > # > > # Source function library. > if [ -f /etc/rc.d/init.d/functions ] ; then
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 251549
:
160996
|
160997
| 161180 |
161183
|
161184