From 9ede34357c4abfff50a09e74064e8705eacad5ea Mon Sep 17 00:00:00 2001 From: Konrad Bucheli Date: Mon, 5 Jun 2023 08:59:59 +0200 Subject: [PATCH 1/5] another useful SELinux link --- admin-guide/troubleshooting/selinux.md | 1 + 1 file changed, 1 insertion(+) diff --git a/admin-guide/troubleshooting/selinux.md b/admin-guide/troubleshooting/selinux.md index 1f00974b..d60cb3ec 100644 --- a/admin-guide/troubleshooting/selinux.md +++ b/admin-guide/troubleshooting/selinux.md @@ -85,5 +85,6 @@ cd /tmp; checkmodule --mls -m --output my-application.mod $PATH_TO/my-applicatio References: - [SELinux Guide](https://docs.linuxfabrik.ch/base/security/selinux.html) (German) +- [Short SELinux Manual](https://dokuwiki.dsteiner.ch/selinux) (English) - How to read SELinux logs: https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/using_selinux/troubleshooting-problems-related-to-selinux_using-selinux - https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/using_selinux/troubleshooting-problems-related-to-selinux_using-selinux From 7c7da922b6f91f97848af10562d032f19791f9e8 Mon Sep 17 00:00:00 2001 From: foiera Date: Wed, 14 Jun 2023 16:23:30 +0200 Subject: [PATCH 2/5] RHEL8 install instructions --- admin-guide/mgmt-tools/sphinx.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/admin-guide/mgmt-tools/sphinx.rst b/admin-guide/mgmt-tools/sphinx.rst index 6811db6c..4fa091a6 100644 --- a/admin-guide/mgmt-tools/sphinx.rst +++ b/admin-guide/mgmt-tools/sphinx.rst @@ -15,6 +15,10 @@ On RHEL 7 it is enough to install the ``python-sphinx`` package:: yum install python-sphinx +On RHEL8 + + dnf install python3-sphinx + Editing ------- From a88e4c11ffca539c5056e0b9a69ac291505ccb60 Mon Sep 17 00:00:00 2001 From: foiera Date: Wed, 14 Jun 2023 16:24:52 +0200 Subject: [PATCH 3/5] install instructions --- admin-guide/mgmt-tools/sphinx.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/admin-guide/mgmt-tools/sphinx.rst b/admin-guide/mgmt-tools/sphinx.rst index 4fa091a6..5e9c118c 100644 --- a/admin-guide/mgmt-tools/sphinx.rst +++ b/admin-guide/mgmt-tools/sphinx.rst @@ -11,7 +11,9 @@ It can generate various formats, including HTML and PDF. Installing Sphinx ----------------- -On RHEL 7 it is enough to install the ``python-sphinx`` package:: +basically it is enough to install the ``python-sphinx`` package:: + +On RHEL 7 yum install python-sphinx From d46340d5598e03022646f498c8a818b2a03f4f14 Mon Sep 17 00:00:00 2001 From: foiera Date: Wed, 14 Jun 2023 16:35:50 +0200 Subject: [PATCH 4/5] Update sphinx.rst --- admin-guide/mgmt-tools/sphinx.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/admin-guide/mgmt-tools/sphinx.rst b/admin-guide/mgmt-tools/sphinx.rst index 5e9c118c..4e214f43 100644 --- a/admin-guide/mgmt-tools/sphinx.rst +++ b/admin-guide/mgmt-tools/sphinx.rst @@ -11,13 +11,13 @@ It can generate various formats, including HTML and PDF. Installing Sphinx ----------------- -basically it is enough to install the ``python-sphinx`` package:: +basically it is enough to install the ``python-sphinx`` package: -On RHEL 7 +On RHEL 7:: yum install python-sphinx -On RHEL8 +On RHEL8:: dnf install python3-sphinx From 4376c2b7ac3ae42ec007c119cc1332c209b50904 Mon Sep 17 00:00:00 2001 From: Konrad Bucheli Date: Thu, 15 Jun 2023 15:10:04 +0200 Subject: [PATCH 5/5] support module streams on RHEL8 --- rhel8/software.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/rhel8/software.md b/rhel8/software.md index 8577366f..920a26b1 100644 --- a/rhel8/software.md +++ b/rhel8/software.md @@ -69,6 +69,15 @@ base::pkg_group::java: Note that this tag can be combined with the `latest` and `absent` tag. +### Install Module Stream + +RHEL 8 introduced the concept of [module streams](https://docs.pagure.org/modularity/). +A specific stream can be selected with the `stream` tag: +``` +base::pkg_group::nodejos: + - 'nodejs:stream=12' +``` + ### Remove Packages To remove an already installed package, append the `:absent` tag to the package name in the package group: