]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/tools/slapcommon.c
Add search no-op support.
[openldap] / servers / slapd / tools / slapcommon.c
index 8343877c8e50a0b5d7baa71f69bd1254ad77ef47..bcea08993ff788d556dfc9a97ebbd94afb4f20d9 100644 (file)
@@ -25,6 +25,7 @@ int           truncatemode = 0;
 int            verbose         = 0;
 int            continuemode = 0;
 int            nosubordinates = 0;
+int            dryrun = 0;
 
 char   *ldiffile       = NULL;
 FILE   *ldiffp         = NULL;
@@ -97,7 +98,7 @@ slap_tool_init(
 
        switch( tool ) {
        case SLAPADD:
-               options = "b:cd:f:l:n:tv";
+               options = "b:cd:f:l:n:tuv";
                break;
 
        case SLAPINDEX:
@@ -148,6 +149,10 @@ slap_tool_init(
                        mode |= SLAP_TRUNCATE_MODE;
                        break;
 
+               case 'u':       /* dry run */
+                       dryrun++;
+                       break;
+
                case 'v':       /* turn on verbose */
                        verbose++;
                        break;