diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e5d5c56..cc1bbaac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/docs/modules/install/pages/quickstart.adoc b/docs/modules/install/pages/quickstart.adoc index eaf77026..ea15ed15 100644 --- a/docs/modules/install/pages/quickstart.adoc +++ b/docs/modules/install/pages/quickstart.adoc @@ -15,8 +15,8 @@ developers or early testers. === Distribution Packages -[#deb] -==== Deb (Debian, Ubuntu) +[#apt] +==== APT (Debian, Ubuntu) First download packages repository signing key: @@ -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] ==== @@ -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