aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2020-01-07 22:52:51 -0500
committerTimo Teräs <timo.teras@iki.fi>2020-01-26 09:01:26 +0200
commitdc2e364d28f7ea266a37648ad1de9c4eae7aa31d (patch)
treec09a08b45bc1f8aeed3f2e4455e49b0f983ce9e2
parent7c2c68df692b8a4ab5ede02bef3e9af7256581aa (diff)
downloadapk-tools-dc2e364d28f7ea266a37648ad1de9c4eae7aa31d.tar.bz2
apk-tools-dc2e364d28f7ea266a37648ad1de9c4eae7aa31d.tar.xz
add apk-verify(8)
-rw-r--r--doc/Makefile1
-rw-r--r--doc/apk-verify.8.scd28
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_>