From 469ce1a0456ecd551eddff809aa492ca29700dfb Mon Sep 17 00:00:00 2001 From: Mark Van de Vyver <1335713+taqtiqa-admin@users.noreply.github.com> Date: Mon, 28 May 2018 20:38:46 +1000 Subject: [PATCH] doc: include keyserver in gpg instructions doc: include keyserver in gpg instructions. Closes issue #3919. --- Documentation/distributions.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Documentation/distributions.md b/Documentation/distributions.md index 8060146b27..aa02aefb30 100644 --- a/Documentation/distributions.md +++ b/Documentation/distributions.md @@ -145,8 +145,9 @@ Currently the rkt upstream project does not maintain its own repository, so user upgrade manually. ### rpm-based +**Note:** the example keyserver argument should be omitted if you already have a keyserver configured or you do not trust the SKS Keyservers. ``` -gpg --recv-key 18AD5014C99EF7E3BA5F6CE950BDD3E0FC8A365E +gpg --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-key 18AD5014C99EF7E3BA5F6CE950BDD3E0FC8A365E wget https://github.com/rkt/rkt/releases/download/v1.30.0/rkt-1.30.0-1.x86_64.rpm wget https://github.com/rkt/rkt/releases/download/v1.30.0/rkt-1.30.0-1.x86_64.rpm.asc gpg --verify rkt-1.30.0-1.x86_64.rpm.asc @@ -154,8 +155,9 @@ sudo rpm -Uvh rkt-1.30.0-1.x86_64.rpm ``` ### deb-based +**Note:** the example keyserver argument should be omitted if you already have a keyserver configured or you do not trust the SKS Keyservers. ``` -gpg --recv-key 18AD5014C99EF7E3BA5F6CE950BDD3E0FC8A365E +gpg --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-key 18AD5014C99EF7E3BA5F6CE950BDD3E0FC8A365E wget https://github.com/rkt/rkt/releases/download/v1.30.0/rkt_1.30.0-1_amd64.deb wget https://github.com/rkt/rkt/releases/download/v1.30.0/rkt_1.30.0-1_amd64.deb.asc gpg --verify rkt_1.30.0-1_amd64.deb.asc