Author: Robert Kaussow <xoxys@rknet.org>
Date:   Mon Oct 4 21:18:29 2021 +0200

    feat: add test for Rocky Linux 8 (#1)

    Co-authored-by: Robert Kaussow <mail@thegeeklab.de>
    Reviewed-on: #1
    Co-authored-by: Robert Kaussow <xoxys@rknet.org>
    Co-committed-by: Robert Kaussow <xoxys@rknet.org>
This commit is contained in:
Robert Kaussow 2021-10-04 19:21:34 +00:00
parent 1b1dc862f2
commit 66ffbafff5
1 changed files with 27 additions and 4 deletions

View File

@ -8,24 +8,37 @@ type: docs
Setup python3 and pip3. Setup python3 and pip3.
* [Default Variables](#default-variables) * [Default Variables](#default-variables)
* [python3_link_bin](#python3_link_bin)
* [python3_link_bin_path](#python3_link_bin_path)
* [python3_packages](#python3_packages) * [python3_packages](#python3_packages)
* [python3_packages_extra](#python3_packages_extra) * [python3_packages_extra](#python3_packages_extra)
* [python3_packages_remove](#python3_packages_remove)
* [Dependencies](#dependencies) * [Dependencies](#dependencies)
--- ---
## Default Variables ## Default Variables
### python3_packages ### python3_link_bin
#### Default value #### Default value
```YAML ```YAML
python3_packages: python3_link_bin: []
- python3
- python3-pip
``` ```
### 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 ### python3_packages_extra
#### Default value #### Default value
@ -34,6 +47,16 @@ python3_packages:
python3_packages_extra: [] python3_packages_extra: []
``` ```
### python3_packages_remove
Optional list of old Pathon packages that should be removed.
#### Default value
```YAML
python3_packages_remove: []
```
## Dependencies ## Dependencies
None. None.