r3760: mention -o switch in help message
authorSimo Sorce <idra@samba.org>
Mon, 15 Nov 2004 14:16:10 +0000 (14:16 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:05:52 +0000 (13:05 -0500)
(This used to be commit 0e7d8753101f22aa192ac5628675a0374484d0e9)

source4/lib/ldb/tools/ldbadd.c
source4/lib/ldb/tools/ldbdel.c
source4/lib/ldb/tools/ldbmodify.c
source4/lib/ldb/tools/ldbrename.c
source4/lib/ldb/tools/ldbsearch.c

index 6d04800502b3b5cc5d15cdb2db04467c8e738925..b0c9d8a3665b8da203a3aeaf3fc663294824a7ca 100644 (file)
@@ -41,6 +41,8 @@ static void usage(void)
        printf("Usage: ldbadd <options> <ldif...>\n");
        printf("Options:\n");
        printf("  -H ldb_url       choose the database (or $LDB_URL)\n");
+       printf("  -o options       pass options like modules to activate\n");
+       printf("              e.g: -o modules:timestamps\n");
        printf("\n");
        printf("Adds records to a ldb, reading ldif the specified list of files\n\n");
        exit(1);
index 42dc9c19d8c7bd5961126e7a83ddb75fa7f3251f..839cb4cbe2c30a4736adadc92760ccafe89b6686 100644 (file)
@@ -64,6 +64,8 @@ static void usage(void)
        printf("Options:\n");
        printf("  -r               recursively delete the given subtree\n");
        printf("  -H ldb_url       choose the database (or $LDB_URL)\n");
+       printf("  -o options       pass options like modules to activate\n");
+       printf("              e.g: -o modules:timestamps\n");
        printf("\n");
        printf("Deletes records from a ldb\n\n");
        exit(1);
index 823855ff1e9c463ddd478e75dd26a800b1ee2ede..ac8958f4ac2e584bc0e96a7cfd561462a5ac9058 100644 (file)
@@ -41,6 +41,8 @@ static void usage(void)
        printf("Usage: ldbmodify <options> <ldif...>\n");
        printf("Options:\n");
        printf("  -H ldb_url       choose the database (or $LDB_URL)\n");
+       printf("  -o options       pass options like modules to activate\n");
+       printf("              e.g: -o modules:timestamps\n");
        printf("\n");
        printf("Modifies a ldb based upon ldif change records\n\n");
        exit(1);
index 3e47e17b178bc6795c261acf242e73aa8c4fd5ed..17b445c9e5a461313336e5fa8d4f3d8e59a73386 100644 (file)
@@ -41,6 +41,8 @@ static void usage(void)
        printf("Usage: ldbrename [<options>] <olddn> <newdn>\n");
        printf("Options:\n");
        printf("  -H ldb_url       choose the database (or $LDB_URL)\n");
+       printf("  -o options       pass options like modules to activate\n");
+       printf("              e.g: -o modules:timestamps\n");
        printf("\n");
        printf("Renames records in a ldb\n\n");
        exit(1);
index 1e7bb1ce4c5f106b285bc486fc0b2aa347c67ac9..81c46b437c520f31218f173d98bdbff6ace883d6 100644 (file)
@@ -42,6 +42,8 @@ static void usage(void)
        printf("  -s base|sub|one  choose search scope\n");
        printf("  -b basedn        choose baseDN\n");
        printf("  -i               read search expressions from stdin\n");
+       printf("  -o options       pass options like modules to activate\n");
+       printf("              e.g: -o modules:timestamps\n");
        exit(1);
 }