]> git.sur5r.net Git - openldap/commitdiff
Update init and ldap.conf(5) to handle LDAPNOINIT, LDAPCONF, LDAPRC
authorKurt Zeilenga <kurt@openldap.org>
Thu, 14 Jan 1999 23:04:08 +0000 (23:04 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Thu, 14 Jan 1999 23:04:08 +0000 (23:04 +0000)
environment settings.

doc/man/man5/ldap.conf.5
libraries/libldap/init.c

index 26c0781dc67d87d81935bf8641af193e3d77cb21..9904ece2fdc2589a57b72a6e51793ef31a12ff4e 100644 (file)
@@ -10,15 +10,25 @@ The
 configuration file is used to set system-wide defaults to be applied when
 running
 .I ldap
-clients.
-Note that each user may specify an optional configuration file,
+clients.  If the environment variable \fBLDAPNOINIT\fP is defined, all
+defaulting is disabled.
+.LP
+Each user may specify an optional configuration file,
 .IR .ldaprc ,
-in his/her home directory which will be used to override system-wide
-defaults file.  The user may also provide a local configuration
-file
-.I ldaprc
-which will be used to override per-user and system-wide defaults.
-Environmental variables may be used to file based defaults.
+in his/her home directory which will be used to override the system-wide
+defaults file.
+.LP
+Additional configuration files can be specified using
+the \fBLDAPCONF\fP and \fBLDAPRC\fP environment variables.
+\fBLDAPCONF\fP may be set the path of a configuration file.  This
+patch can be absolute or relative to current working directory.
+The \fBLDAPRC\fP, if defined, should be a basename of a file
+in the current working directory or in the user's home directory.
+.LP
+Environmental variables may also be used to augment the file based defaults.
+The name of the option is the as listed but with a prefix of \fBLDAP\fP.
+For example, to define \fBBASE\fP via the environment, define the variable
+\fBLDAPBASE\fP to desired value.
 .SH OPTIONS
 The different configuration options are:
 .TP 1i
@@ -61,6 +71,10 @@ dereferenced when searching, or dereferenced only when locating the
 base object for the search.  The default is to never dereference aliases.
 .SH FILES
 .I  ETCDIR/ldap.conf
+.LP
+.I  $HOME/.ldaprc
+.LP
+.I  $CWD/.ldaprc
 .SH "SEE ALSO"
 ldap(3)
 .SH AUTHOR
index 81f31a1d8927c383dd9f8e5586b56ca84e01a2d5..aa9179da9729bc57abc3eadd556f0bb1ea5747a4 100644 (file)
@@ -314,12 +314,20 @@ void openldap_ldap_initialize( void )
        openldap_ldap_init_w_userconf(DEFAULT_LDAP_USERRC_FILE);
 
        {
-               char *altfile = getenv("LDAPRC");
+               char *altfile = getenv("LDAPCONF");
 
                if( altfile != NULL ) {
                        openldap_ldap_init_w_conf( altfile );
                }
        }
 
+       {
+               char *altfile = getenv("LDAPRC");
+
+               if( altfile != NULL ) {
+                       openldap_ldap_init_w_userconf( altfile );
+               }
+       }
+
        openldap_ldap_init_w_env(NULL);
 }