rpm  4.5
poptDB.c
Go to the documentation of this file.
1 
6 #include "system.h"
7 
8 #include <rpmcli.h>
9 
10 #include "debug.h"
11 
13 
16 struct poptOption rpmDatabasePoptTable[] = {
17  { "initdb", '\0', POPT_ARG_VAL, &rpmDBArgs.init, 1,
18  N_("initialize database"), NULL},
19  { "rebuilddb", '\0', POPT_ARG_VAL, &rpmDBArgs.rebuild, 1,
20  N_("rebuild database inverted lists from installed package headers"),
21  NULL},
22  { "verifydb", '\0', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &rpmDBArgs.verify, 1,
23  N_("verify database files"), NULL},
24 
25  POPT_TABLEEND
26 };