Example #1
0
static void usage(struct ldb_context *ldb)
{
	printf("Usage: ldbadd <options> <ldif...>\n");
	printf("Adds records to a ldb, reading ldif the specified list of files\n\n");
	ldb_cmdline_help(ldb, "ldbadd", stdout);
	exit(LDB_ERR_OPERATIONS_ERROR);
}
Example #2
0
static void usage(void)
{
	printf("Usage: ldbmodify <options> <ldif...>\n");
	printf("Modifies a ldb based upon ldif change records\n\n");
	ldb_cmdline_help("ldbmodify", stdout);
	exit(1);
}
Example #3
0
static void usage(void)
{
	printf("Usage: ldbdel <options> <DN...>\n");
	printf("Deletes records from a ldb\n\n");
	ldb_cmdline_help("ldbdel", stdout);
	exit(1);
}
Example #4
0
static void usage(struct ldb_context *ldb)
{
	printf("Usage: ldbmodify <options> <ldif...>\n");
	printf("Modifies a ldb based upon ldif change records\n\n");
	ldb_cmdline_help(ldb, "ldbmodify", stdout);
	exit(LDB_ERR_OPERATIONS_ERROR);
}
Example #5
0
static void usage(struct ldb_context *ldb)
{
	printf("Usage: ldbrename [<options>] <olddn> <newdn>\n");
	printf("Renames records in a ldb\n\n");
	ldb_cmdline_help(ldb, "ldbmodify", stdout);
	exit(LDB_ERR_OPERATIONS_ERROR);
}