Add .gitignore.
[osl.git] / fsck.ggo
1 option "loglevel" l
2 #~~~~~~~~~~~~~~~~~~
3
4 "set loglevel (0-6)"
5
6         int typestr="level"
7         default="3"
8         optional
9
10 option "database-dir" d
11 #~~~~~~~~~~~~~~~~~~~~~~
12 "Full path to the database directory"
13 string typestr="path"
14 required
15 details="
16         Unless non-option arguments are given, all subdirectories
17         of \"path\" are considered osl tables which oslfsck will try
18         to fix.
19 "
20
21 option "dump_dir" D
22 #~~~~~~~~~~~~~~~~~~
23 "If path is non-empty, para_fsck will write a
24 dump of all given tables to the specified
25 path."
26
27         string typestr="path"
28         optional
29         default=""
30
31 option "no_fsck" n
32 #~~~~~~~~~~~~~~~~~
33 "Disable fsck mode."
34
35         flag off
36
37 option "force" f
38 #~~~~~~~~~~~~~~~
39 "Force fsck even if the table is dirty.
40 Ignored if -n is given."
41
42         flag off
43
44 option "dry_run" -
45 #~~~~~~~~~~~~~~~~~
46 "Only report problems, don't try to fix them."
47
48         flag off
49