From 2b5d30712006ec459be216f4206181f6702d7658 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Thu, 16 Jan 2020 15:50:02 -0500 Subject: [PATCH] add apk-keys(5) --- doc/Makefile | 1 + doc/apk-keys.5.scd | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 doc/apk-keys.5.scd diff --git a/doc/Makefile b/doc/Makefile index 77f1766..fda73f5 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -22,6 +22,7 @@ docs: $(obj)/apk.8 \ $(obj)/apk-upgrade.8 \ $(obj)/apk-verify.8 \ $(obj)/apk-version.8 \ + $(obj)/apk-keys.5 \ $(obj)/apk-repositories.5 \ $(obj)/apk-world.5 targets += docs diff --git a/doc/apk-keys.5.scd b/doc/apk-keys.5.scd new file mode 100644 index 0000000..74c5fdf --- /dev/null +++ b/doc/apk-keys.5.scd @@ -0,0 +1,18 @@ +apk-keys(5) + +# NAME + +*/etc/apk/keys* - cryptographic keys trusted by apk + +# DESCRIPTION + +The */etc/apk/keys* directory stores RSA public keys which are trusted by apk +to verify cryptographic signatures for packages. To trust a new key, simply add +the armored public key to this directory. See *abuild-keygen*(1) for +information on generating new keys, *abuild-sign*(1) for using these keys to +sign files, and *apk-verify*(8) for verifying keys against the apk trust store. + +# AUTHORS + +Natanael Copa ++ +Timo Teräs <_timo.teras@iki.fi_>