diff options
author | Drew DeVault <sir@cmpwn.com> | 2020-01-07 22:52:51 -0500 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2020-01-26 09:01:26 +0200 |
commit | dc2e364d28f7ea266a37648ad1de9c4eae7aa31d (patch) | |
tree | c09a08b45bc1f8aeed3f2e4455e49b0f983ce9e2 /doc | |
parent | 7c2c68df692b8a4ab5ede02bef3e9af7256581aa (diff) | |
download | apk-tools-dc2e364d28f7ea266a37648ad1de9c4eae7aa31d.tar.gz apk-tools-dc2e364d28f7ea266a37648ad1de9c4eae7aa31d.tar.bz2 apk-tools-dc2e364d28f7ea266a37648ad1de9c4eae7aa31d.tar.xz apk-tools-dc2e364d28f7ea266a37648ad1de9c4eae7aa31d.zip |
add apk-verify(8)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile | 1 | ||||
-rw-r--r-- | doc/apk-verify.8.scd | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/doc/Makefile b/doc/Makefile index bf74f2a..262e717 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -18,6 +18,7 @@ docs: $(obj)/apk.8 \ $(obj)/apk-policy.8 \ $(obj)/apk-update.8 \ $(obj)/apk-upgrade.8 \ + $(obj)/apk-verify.8 \ $(obj)/apk-repositories.5 \ $(obj)/apk-world.5 targets += docs diff --git a/doc/apk-verify.8.scd b/doc/apk-verify.8.scd new file mode 100644 index 0000000..44b8490 --- /dev/null +++ b/doc/apk-verify.8.scd @@ -0,0 +1,28 @@ +apk-verify(8) + +# NAME + +apk verify - verify package integrity and signature + +# SYNOPSIS + +*apk verify* [<_options_>...] _files_... + +# DESCRIPTION + +*apk verify* verifies the integrity of the package files specified, validating +the checksums and cryptographic signature. + +*apk verify* prints a summary of the results on stdout, and exits with status +code zero if all packages were successfully verified. If any failed, *apk +verify* exits with a nonzero status. + +# OPTIONS + +*apk verify* does not support any specific options. See *apk*(8) for global +options. + +# AUTHORS + +Natanael Copa <ncopa@alpinelinux.org>++ +Timo Teräs <_timo.teras@iki.fi_> |