From d56d45a2ab66a939b80a486a63664e1025fcc5b6 Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Mon, 21 Oct 2019 16:35:23 +0200 Subject: [PATCH] docs: install: apt: fix snippet display & link to packaging repo --- docs/installation.rst | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index b2f30e6..a41008b 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -58,10 +58,15 @@ The following list may be incomplete, feel free to submit a PR with an update: Debian / Ubuntu APT repositories ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -The fingerprint of the signing key for Debian / Ubuntu packages is ``E101 418F D3D6 FBCB 9D65 A62D 7086 99FC 5F2E BF16``. -It is available at ``https://zrepl.cschwarz.com/apt/apt-key.asc``. +We maintain APT repositories for Debian, Ubuntu and derivatives. +The fingerprint of the signing key is ``E101 418F D3D6 FBCB 9D65 A62D 7086 99FC 5F2E BF16``. +It is available at ``_ . +Please open an issue `in the packaging repository `_ if you encounter any issues with the repository. + +The following snippet configure the repository for your Debian or Ubuntu release: :: + apt update && apt install curl gnupg lsb-release; \ ARCH="$(dpkg --print-architecture)"; \ CODENAME="$(lsb_release -i -s | tr '[:upper:]' '[:lower:]') $(lsb_release -c -s | tr '[:upper:]' '[:lower:]')"; \ @@ -70,9 +75,12 @@ It is available at ``https://zrepl.cschwarz.com/apt/apt-key.asc``. (echo "deb [arch=$ARCH] https://zrepl.cschwarz.com/apt/$CODENAME main" > /etc/apt/sources.list.d/zrepl.list) && \ apt update -Note that until zrepl reaches 1.0, all APT repositories will be updated to the latest zrepl release immediately. -This includes breaking changes between zrepl versions. -Use ``apt-mark hold zrepl`` to prevent upgrades of zrepl. + +.. NOTE:: + + Until zrepl reaches 1.0, all APT repositories will be updated to the latest zrepl release immediately. + This includes breaking changes between zrepl versions. + Use ``apt-mark hold zrepl`` to prevent upgrades of zrepl. Compile From Source ~~~~~~~~~~~~~~~~~~~