Skip to content
Merged
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [unreleased]

### Added
- docs: Mention support of SLES and openSUSE 15 and 16.

## [0.6.0] - 2025-10-16

### Added
Expand Down
68 changes: 64 additions & 4 deletions docs/modules/install/pages/quickstart.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ developers or early testers.

=== Distribution Packages

[#deb]
==== Deb (Debian, Ubuntu)
[#apt]
==== APT (Debian, Ubuntu)

First download packages repository signing key:

Expand Down Expand Up @@ -122,8 +122,8 @@ xref:#restapi[REST API]:
# apt install racksdb-web
----

[#rpm]
==== RPM (RHEL, CentOS, Rocky Linux, Fedora)
[#dnf]
==== DNF (RHEL, CentOS, Rocky Linux, Fedora)

[NOTE]
====
Expand Down Expand Up @@ -235,6 +235,66 @@ xref:#restapi[REST API]:
# dnf install racksdb-web
----

[#zypper]
==== Zypper (SLES, openSUSE)

This procedure works on
https://www.suse.com/products/server/[SUSE Linux Entreprise Server (SLES)] and
https://www.opensuse.org/[openSUSE LEAP].

Import RPM siging key:

[source,console]
----
# rpm --import https://pkgs.rackslab.io/keyring.asc
----

Run this command to add package repositories:

[tabs]
======
SLES 15::
+
====
NOTE: This package repository is also compatible with
https://www.opensuse.org/[openSUSE Leap 15].

[source,console]
----
# zypper addrepo --check --gpgcheck-allow-unsigned-repo --refresh \
https://pkgs.rackslab.io/rpm/suse15/main/x86_64 rackslab-main
----
====

SLES 16::
+
====
NOTE: This package repository is also compatible with
https://www.opensuse.org/[openSUSE Leap 16].

[source,console]
----
# zypper addrepo --check --gpgcheck-allow-unsigned-repo --refresh \
https://pkgs.rackslab.io/rpm/suse16/main/x86_64 rackslab-main
----
====
======

Install RacksDB packages:

[source,console]
----
# zypper install racksdb
----

Optionally, you can also install RacksDB web application to access the
xref:#restapi[REST API]:

[source,console]
----
# zypper install racksdb-web
----

[#pypi]
=== PyPI

Expand Down
Loading