Skip to content
Open
Show file tree
Hide file tree
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
33 changes: 26 additions & 7 deletions install/package.rst
Original file line number Diff line number Diff line change
Expand Up @@ -167,23 +167,32 @@ Add Repository

.. tab:: Debian

Install Repository Key
.. hint::
- Starting with Debian 12, we provide the command to add the
repository in the
`deb822 format <https://repolib.readthedocs.io/en/latest/deb822-format.html>`_.
- Starting with Debian 13, the packages are hosted under a different
URL and the signing key is saved to a different directory.

Add Repository Key (Debian 11 & 12)
.. code-block:: console

$ curl -fsSL https://dl.packager.io/srv/zammad/zammad/key | \
gpg --dearmor | sudo tee /etc/apt/keyrings/pkgr-zammad.gpg> /dev/null

Debian 11
Add Repository Key (Debian 13)
.. code-block:: console

$ curl -fsSL https://go.packager.io/srv/deb/zammad/zammad/gpg-key.gpg | \
gpg --dearmor | sudo tee /usr/share/keyrings/zammad.gpg> /dev/null

Add Repository (Debian 11)
.. code-block:: console

$ echo "deb [signed-by=/etc/apt/keyrings/pkgr-zammad.gpg] https://dl.packager.io/srv/deb/zammad/zammad/stable/debian 11 main"| \
sudo tee /etc/apt/sources.list.d/zammad.list > /dev/null

Debian 12
.. hint:: Starting with Debian 12, we provide the command to add the
repository in the
`deb822 format <https://repolib.readthedocs.io/en/latest/deb822-format.html>`_.

Add Repository (Debian 12)
.. code-block:: console

$ printf "Types: deb
Expand All @@ -193,6 +202,16 @@ Add Repository
Signed-By: /etc/apt/keyrings/pkgr-zammad.gpg" | \
sudo tee /etc/apt/sources.list.d/zammad.sources > /dev/null

Add Repository (Debian 13)
.. code-block:: console

$ printf "Types: deb
URIs: https://go.packager.io/srv/deb/zammad/zammad/stable/debian/
Suites: 13
Components: main
Signed-By: /usr/share/keyrings/zammad.gpg" | \
sudo tee /etc/apt/sources.list.d/zammad.sources > /dev/null

.. tab:: OpenSUSE / SLES

Install Repository Key
Expand Down
2 changes: 1 addition & 1 deletion prerequisites/software.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Below you can find all distributions Zammad provides packages for.
:widths: 20, 20

"CentOS / RHEL", "8 & 9"
"Debian", "11 & 12"
"Debian", "11, 12 & 13"
"OpenSUSE / SLES", "Leap 15.x / 15"
"Ubuntu", "22.04 & 24.04"

Expand Down