8000 docs: include keyserver in gpg instructions by taqtiqa-mark · Pull Request #3928 · rkt/rkt · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Feb 24, 2020. It is now read-only.

docs: include keyserver in gpg instructions #3928

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Documentation/distributions.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,17 +145,19 @@ 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 18AD5014C 8000 99EF7E3BA5F6CE950BDD3E0FC8A365E
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn't hkp://pool.sks-keyservers.net enough? That seems to be recommended URL from https://sks-keyservers.net/ homepage.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My experience is accessing port 80 causes less issues for drive-by users. You can really pick the pool that scratches your itch:
https://sks-keyservers.net/overview-of-pools.php

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
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
Expand Down
0