Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Fingerprint verification and apt-key fix in INSTALL.md #4609

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 18 additions & 2 deletions INSTALL.md
Expand Up @@ -262,8 +262,24 @@ Synapse via https://matrix.org/packages/debian/. To use them:
sudo apt install -y lsb-release curl apt-transport-https
echo "deb https://matrix.org/packages/debian `lsb_release -cs` main" |
sudo tee /etc/apt/sources.list.d/matrix-org.list
curl "https://matrix.org/packages/debian/repo-key.asc" |
sudo apt-key add -
curl -s "https://matrix.org/packages/debian/repo-key.asc" |
sudo tee /etc/apt/trusted.gpg.d/matrix-org_packages.asc |
gpg -q -n --import --import-options import-show -
```

Verify the output of the downloaded repository key matches:

```
pub rsa4096 2015-06-11 [SC]
C35EB17E1EAE708E6603A9B3AD0592FE47F0DF61
uid matrix.org (Debian signing key) <packages@matrix.org>
sub rsa4096 2015-06-11 [E]

```

If the fingerprint is a match, proceed to install the Synapse package:

```
sudo apt update
sudo apt install matrix-synapse-py3
```
Expand Down
1 change: 1 addition & 0 deletions changelog.d/4609.misc
@@ -0,0 +1 @@
Add docs for fingerprint verification and fix an issue with apt-key instructions in INSTALL.md.