summaryrefslogtreecommitdiff
path: root/frags/installing-ubuntu.rst
diff options
context:
space:
mode:
Diffstat (limited to 'frags/installing-ubuntu.rst')
-rw-r--r--frags/installing-ubuntu.rst23
1 files changed, 18 insertions, 5 deletions
diff --git a/frags/installing-ubuntu.rst b/frags/installing-ubuntu.rst
index 12831043..89ca4dc9 100644
--- a/frags/installing-ubuntu.rst
+++ b/frags/installing-ubuntu.rst
@@ -1,22 +1,35 @@
To install the GNU Taler Ubuntu packages, first ensure that you have
the right Ubuntu distribution. At this time, the packages are built for
-Ubuntu 20.04 LTS (Focal Fossa).
+Ubuntu Lunar and Ubuntu Jammy. Make sure to have ``universe`` in your
+``/etc/apt/sources.list`` (after ``main``) as we depend on some packages
+from Ubuntu ``universe``.
A typical ``/etc/apt/sources.list.d/taler.list`` file for this setup
-would look like this:
+would look like this for Ubuntu Lunar:
.. code-block::
- deb https://deb.taler.net/apt/ubuntu/ focal-fossa main
+ deb [signed-by=/etc/apt/keyrings/taler-systems.gpg] https://deb.taler.net/apt/ubuntu/ lunar taler-lunar
-The last line is crucial, as it adds the GNU Taler packages.
+For Ubuntu Mantic use this instead:
+
+.. code-block::
+
+ deb [signed-by=/etc/apt/keyrings/taler-systems.gpg] https://deb.taler.net/apt/ubuntu/ mantic taler-mantic
+
+For Ubuntu Noble use this instead:
+
+.. code-block::
+
+ deb [signed-by=/etc/apt/keyrings/taler-systems.gpg] https://deb.taler.net/apt/ubuntu/ noble taler-noble
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 - https://taler.net/taler-systems.gpg.key | apt-key add -
+ # wget -O /etc/apt/keyrings/taler-systems.gpg \
+ https://taler.net/taler-systems.gpg
# apt update
.. note::