Drop dependency on openssl.
[osl.git] / fsck.ggo
1 option "loglevel" l
2 #~~~~~~~~~~~~~~~~~~
3 "Set loglevel (0-6)"
4 int typestr="level"
5 default="3"
6 optional
7 details="
8         Log messages are always written to stderr while normal output
9         goes to stdout. Lower values mean more verbose logging.
10 "
11
12 option "database-dir" d
13 #~~~~~~~~~~~~~~~~~~~~~~
14 "Full path to the database directory"
15 string typestr="path"
16 required
17 details="
18         Unless non-option arguments are given, all subdirectories
19         of \"path\" are considered osl tables which oslfsck will try
20         to fix.
21 "
22
23 option "dump-dir" D
24 #~~~~~~~~~~~~~~~~~~
25 "Enable dump mode"
26 string typestr="path"
27 optional
28 default=""
29 details="
30         If path is non-empty, oslfsck will write a dump of all
31         given tables to the specified path.
32 "
33
34 option "no-fsck" n
35 #~~~~~~~~~~~~~~~~~
36 "Disable fsck mode."
37 flag off
38 details="
39         This is mainly useful in conjunction with the --dump-dir
40         option.
41 "
42
43 option "force" f
44 #~~~~~~~~~~~~~~~
45 "Enable force mode"
46 flag off
47 details="
48         Ignore the dirty bit when opening osl tables.
49 "
50
51 option "dry-run" -
52 #~~~~~~~~~~~~~~~~~
53 "Only report problems, don't try to fix them."
54 flag off