diff options
author | Drew DeVault <sir@cmpwn.com> | 2020-01-14 20:07:24 -0500 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2020-01-26 09:01:26 +0200 |
commit | 6e7d307ba99ffbb9483c21f45524fbcb7ba511a5 (patch) | |
tree | a9d78ebe88bfe00b67ef3ef005b1660e6f9e6e60 /doc/apk-audit.8.scd | |
parent | dc2e364d28f7ea266a37648ad1de9c4eae7aa31d (diff) | |
download | apk-tools-6e7d307ba99ffbb9483c21f45524fbcb7ba511a5.tar.gz apk-tools-6e7d307ba99ffbb9483c21f45524fbcb7ba511a5.tar.bz2 apk-tools-6e7d307ba99ffbb9483c21f45524fbcb7ba511a5.tar.xz apk-tools-6e7d307ba99ffbb9483c21f45524fbcb7ba511a5.zip |
add apk-audit(8)
Diffstat (limited to 'doc/apk-audit.8.scd')
-rw-r--r-- | doc/apk-audit.8.scd | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/doc/apk-audit.8.scd b/doc/apk-audit.8.scd new file mode 100644 index 0000000..ad4bc60 --- /dev/null +++ b/doc/apk-audit.8.scd @@ -0,0 +1,55 @@ +apk-audit(8) + +# NAME + +apk audit - audit directories for changes + +# SYNOPSIS + +*apk audit* [<_options_>...] _directories_... + +# DESCRIPTION + +*apk audit* audits the specified directories for changes from the package +database. By default, the output format is one file per line, for each affected +file. A character is printed indicating the change detected, followed by a +space, then the affected path. The changes detected are: + +|[ A +:< File added +| d +: Directory added +| D +: Directory added (with non-listed files/subdirs) +| M +: File metadata changed (uid, gid, or mode) +| m +: Directory metadata changed +| U +: File contents modified +| X +: File deleted +| x +: xattrs changed + +# OPTIONS + +*--check-permissions* + In addition to checking file contents, check the uid, gid, and file + mode as well. + +*--packages* + Instead of printing each modified file, print the names and versions of + the packages which own the affected files. + +*--system* + List all modified configuration files (in protected_paths.d) that need + to be backed up. + +*-r, --recursive* + Descend into directories and audit them as well. + +# AUTHORS + +Natanael Copa <ncopa@alpinelinux.org>++ +Timo Teräs <_timo.teras@iki.fi_> |