taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit 7b154397360bb10a37c2515010884813e3564c41
parent aa9b4d1378a3d0629372ef5ec9a13063dd762233
Author: Christian Grothoff <christian@grothoff.org>
Date:   Fri, 24 Feb 2023 14:58:47 +0100

-fix keyring instructions

Diffstat:
Mcore/index.rst | 2+-
Mfrags/installing-debian.rst | 5+++--
Mfrags/installing-ubuntu.rst | 6+++---
3 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/core/index.rst b/core/index.rst @@ -1,6 +1,6 @@ .. This file is part of GNU TALER. - Copyright (C) 2014-2020 Taler Systems SA + Copyright (C) 2014-2023 Taler Systems SA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software diff --git a/frags/installing-debian.rst b/frags/installing-debian.rst @@ -8,14 +8,15 @@ looks like this: .. code-block:: - deb [signed-by=/usr/share/keyrings/taler-systems.gpg] https://deb.taler.net/apt/debian stable main + deb [signed-by=/etc/apt/keyrings/taler-systems.gpg] https://deb.taler.net/apt/debian stable main Next, you must import the Taler Systems SA public package signing key into your keyring and update the package lists: .. code-block:: console - # wget -O taler-systems.gpg -P /usr/share/keyrings https://taler.net/taler-systems.gpg.key + # wget -O /etc/apt/keyrings/taler-systems.gpg \ + https://taler.net/taler-systems.gpg # apt update .. note:: diff --git a/frags/installing-ubuntu.rst b/frags/installing-ubuntu.rst @@ -7,7 +7,7 @@ would look like this: .. code-block:: - deb https://deb.taler.net/apt/ubuntu/ stable main + deb [signed-by=/etc/apt/keysrings/taler-systems.gpg] https://deb.taler.net/apt/ubuntu/ stable main The last line is crucial, as it adds the GNU Taler packages. @@ -16,8 +16,8 @@ into your keyring and update the package lists: .. code-block:: console - # wget -O /etc/apt/trusted.gpg.d/taler-systems.asc \ - https://taler.net/taler-systems.gpg.key + # wget -O /etc/apt/keyrings/taler-systems.gpg \ + https://taler.net/taler-systems.gpg # apt update .. note::