.B SBINDIR/slapadd
.B [\-v]
.B [\-c]
-.B [\-s]
.B [\-d level]
.B [\-b suffix]
.B [\-n dbnum]
.B \-c
enable continue (ignore errors) mode.
.TP
-.B \-s
-disable schema and other checks.
-.TP
.BI \-d " level"
enable debugging messages as defined by the specified
.IR level .
char *conffile = SLAPD_DEFAULT_CONFIGFILE;
int truncatemode = 0;
int verbose = 0;
-int noschemacheck = 0;
int continuemode = 0;
char *ldiffile = NULL;
char *options = NULL;
fprintf( stderr,
"usage: %s [-v] [-c] [-d debuglevel] [-f configfile]\n"
- "\t[-n databasenumber | -b suffix]", progname );
+ "\t[-n databasenumber | -b suffix]", progname );
switch( tool ) {
case SLAPADD:
- options = "\t[-s] [-l ldiffile]\n";
+ options = "\t[-l ldiffile]\n";
break;
case SLAPCAT:
switch( tool ) {
case SLAPADD:
- options = "b:cd:f:l:n:stv";
+ options = "b:cd:f:l:n:tv";
break;
case SLAPINDEX:
dbnum = atoi( optarg ) - 1;
break;
- case 's': /* disable schema checking */
- noschemacheck++;
- break;
-
case 't': /* turn on truncate */
truncatemode++;
mode |= SLAP_TRUNCATE_MODE;