From 66ffbafff5d8030ecf58c01ed8f1a20447dfe2f0 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 4 Oct 2021 19:21:34 +0000 Subject: [PATCH] commit 8a2ac1c4d52ae34330622f9656c123dbebfc8f68 Author: Robert Kaussow Date: Mon Oct 4 21:18:29 2021 +0200 feat: add test for Rocky Linux 8 (#1) Co-authored-by: Robert Kaussow Reviewed-on: https://gitea.rknet.org/ansible/xoxys.python3/pulls/1 Co-authored-by: Robert Kaussow Co-committed-by: Robert Kaussow --- index.md | 31 +++++++++++++++++++++++++++---- 1 file changed, 27 insertions(+), 4 deletions(-) diff --git a/index.md b/index.md index 8b4adae..dd0db1f 100644 --- a/index.md +++ b/index.md @@ -8,24 +8,37 @@ type: docs Setup python3 and pip3. * [Default Variables](#default-variables) + * [python3_link_bin](#python3_link_bin) + * [python3_link_bin_path](#python3_link_bin_path) * [python3_packages](#python3_packages) * [python3_packages_extra](#python3_packages_extra) + * [python3_packages_remove](#python3_packages_remove) * [Dependencies](#dependencies) --- ## Default Variables -### python3_packages +### python3_link_bin #### Default value ```YAML -python3_packages: - - python3 - - python3-pip +python3_link_bin: [] ``` +### python3_link_bin_path + +#### Default value + +```YAML +python3_link_bin_path: /usr/bin +``` + +### python3_packages + +The default packages depend on the OS version. For RHEL7 based systems, Python3.8 from SCL `centos-sclo-rh`. Therefore, the SCL need to be installed and enabled already! For RHEL8 based system Python3.9 will be installed from the Appstream repo. + ### python3_packages_extra #### Default value @@ -34,6 +47,16 @@ python3_packages: python3_packages_extra: [] ``` +### python3_packages_remove + +Optional list of old Pathon packages that should be removed. + +#### Default value + +```YAML +python3_packages_remove: [] +``` + ## Dependencies None.