Move gengetopt targets to own Makefile.
[paraslash.git] / ggo / fsck.ggo
1 option "loglevel" l
2 #~~~~~~~~~~~~~~~~~~
3
4 "set loglevel (0-6)"
5
6         int typestr="level"
7         default="2"
8         optional
9
10 option "base_dir" b
11 #~~~~~~~~~~~~~~~~~~
12 "Full path to the database directory
13 containing the table(s) to be checked.
14 (default='~/.paraslash/afs_database'"
15
16         string typestr="path"
17         optional
18
19 option "dump_dir" d
20 #~~~~~~~~~~~~~~~~~~
21 "If path is non-empty, para_fsck will write a
22 dump of all given tables to the specified
23 path."
24
25         string typestr="path"
26         optional
27         default=""
28
29 option "no_fsck" n
30 #~~~~~~~~~~~~~~~~~
31 "Disable fsck mode."
32
33         flag off
34
35 option "force" f
36 #~~~~~~~~~~~~~~~
37 "Force fsck even if the table is dirty.
38 Ignored if -n is given."
39
40         flag off
41
42 option "dry_run" -
43 #~~~~~~~~~~~~~~~~~
44 "Only report problems, don't try to fix them."
45
46         flag off
47