NEWS: Add info about recent bugfix in 489d586.
[metastore.git] / metastore.1
blobd6c561eb69d53f4a13b68d8735bb993a8bd3b493
1 .TH metastore "2" "September 2015"
2 .\"
3 .SH NAME
4 metastore \- stores and restores filesystem metadata
5 .\"
6 .SH SYNOPSIS
7 \fBmetastore\fR \fIACTION\fR [\fIOPTION...\fR] [\fIPATH...\fR]
8 .\"
9 .SH DESCRIPTION
10 Stores or restores metadata (owner, group, permissions, xattrs and optionally
11 mtime) for a filesystem tree. This can be used to preserve the metadata in
12 situations where it is usually not stored (git and tar for example) or as
13 a tripwire like mechanism to detect any changes to metadata. Note that e.g.
14 SELinux stores its labels in xattrs so care should be taken when applying
15 stored metadata to make sure that system security is not compromised.
16 .\"
17 .SH ACTIONS
18 .TP
19 .B \-c, \-\-compare
20 Shows the difference between the stored and real metadata.
21 .TP
22 .B \-s, \-\-save
23 Saves the current metadata to ./.metadata or to the specified file
24 (see \-\-file option below).
25 .TP
26 .B \-a, \-\-apply
27 Attempts to apply the stored metadata to the file system.
28 .TP
29 .B \-h, \-\-help
30 Prints a help message and exits.
31 .\"
32 .SH OPTIONS
33 .TP
34 .B \-v, \-\-verbose
35 Causes metastore to print more verbose messages. Can be repeated more than
36 once for even more verbosity.
37 .TP
38 .B \-q, \-\-quiet
39 Causes metastore to print less verbose messages. Can be repeated more than
40 once for even less verbosity.
41 .TP
42 .B \-m, \-\-mtime
43 Causes metastore to also take mtime into account for the compare or apply actions.
44 .TP
45 .B \-e, \-\-empty\-dirs
46 Also attempts to recreate missing empty directories. May be useful where
47 empty directories are not tracked (e.g. by git or cvs).
48 Only works in combination with the \fBapply\fR option.
49 .TP
50 .B -E, --remove-empty-dirs
51 Also attempts to remove empty directories missing from the metadata. May be
52 useful where empty directories are not tracked (e.g. by git or cvs).  Only
53 works in combination with the \fBapply\fR option.
54 .TP
55 .B \-g, \-\-git
56 Prevents metastore from omitting .git directories.
57 .TP
58 .B \-f <file>, \-\-file <file>
59 Causes the metadata to be saved, read from the specified file rather
60 than ./.metadata.
61 .\"
62 .SH PATHS
63 If no path is specified, metastore will use the current directory as the basis
64 for the actions. This is the recommended way of executing metastore.
65 Alternatively, one or more paths can be specified and they will each be
66 examined. Later invocations should be made using the exact same paths to
67 ensure that the stored metadata is interpreted correctly.
68 .\"
69 .SH AUTHOR
70 Written by David Härdeman <david@hardeman.nu>