From eff69aa0f908f5cb44b3cb846c8a4ada874240fa Mon Sep 17 00:00:00 2001 From: Ira Cooper Date: Fri, 6 Jan 2012 15:45:06 -0800 Subject: Add "repack" command to tdbtool. Autobuild-User: Jeremy Allison Autobuild-Date: Sat Jan 7 02:18:41 CET 2012 on sn-devel-104 --- lib/tdb/tools/tdbtool.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'lib') diff --git a/lib/tdb/tools/tdbtool.c b/lib/tdb/tools/tdbtool.c index d93f742d1c..dc5747f87a 100644 --- a/lib/tdb/tools/tdbtool.c +++ b/lib/tdb/tools/tdbtool.c @@ -61,6 +61,7 @@ enum commands { CMD_NEXT, CMD_SYSTEM, CMD_CHECK, + CMD_REPACK, CMD_QUIT, CMD_HELP }; @@ -98,6 +99,7 @@ COMMAND_TABLE cmd_table[] = { {"quit", CMD_QUIT}, {"q", CMD_QUIT}, {"!", CMD_SYSTEM}, + {"repack", CMD_REPACK}, {NULL, CMD_HELP} }; @@ -203,6 +205,7 @@ static void help(void) " list : print the database hash table and freelist\n" " free : print the database freelist\n" " check : check the integrity of an opened database\n" +" repack : repack the database\n" " speed : perform speed tests on the database\n" " ! command : execute system command\n" " 1 | first : print the first record\n" @@ -608,6 +611,10 @@ static int do_command(void) bIterate = 0; tdb_transaction_commit(tdb); return 0; + case CMD_REPACK: + bIterate = 0; + tdb_repack(tdb); + return 0; case CMD_TRANSACTION_CANCEL: bIterate = 0; tdb_transaction_cancel(tdb); -- cgit