1998-08-09 08:43:13 +08:00
|
|
|
/* config.c - passwd backend configuration file routine */
|
|
|
|
|
|
|
|
#include "portable.h"
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/socket.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/time.h>
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include "slap.h"
|
1999-02-05 17:03:47 +08:00
|
|
|
#include "external.h"
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
int
|
|
|
|
passwd_back_db_config(
|
|
|
|
BackendDB *be,
|
1998-08-09 08:43:13 +08:00
|
|
|
char *fname,
|
|
|
|
int lineno,
|
|
|
|
int argc,
|
|
|
|
char **argv
|
|
|
|
)
|
|
|
|
{
|
|
|
|
/* alternate passwd file */
|
|
|
|
if ( strcasecmp( argv[0], "file" ) == 0 ) {
|
|
|
|
#ifdef HAVE_SETPWFILE
|
|
|
|
if ( argc < 2 ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: missing filename in \"file <filename>\" line\n",
|
|
|
|
fname, lineno );
|
1999-02-05 17:03:47 +08:00
|
|
|
return( 1 );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1998-11-28 04:21:54 +08:00
|
|
|
be->be_private = ch_strdup( argv[1] );
|
1998-08-09 08:43:13 +08:00
|
|
|
#else /* HAVE_SETPWFILE */
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: ignoring \"file\" option (not supported on this platform)\n",
|
|
|
|
fname, lineno );
|
|
|
|
#endif /* HAVE_SETPWFILE */
|
|
|
|
|
|
|
|
/* anything else */
|
|
|
|
} else {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: unknown directive \"%s\" in passwd database definition (ignored)\n",
|
|
|
|
fname, lineno, argv[0] );
|
|
|
|
}
|
1999-02-05 17:03:47 +08:00
|
|
|
|
|
|
|
return( 0 );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|