From 83fb00ccaa93c5154dca27a6ac4b63c335f20083 Mon Sep 17 00:00:00 2001 From: Jason Rothstein Date: Sun, 27 Apr 2025 12:19:17 -0500 Subject: [PATCH] Add Fedora 42 and update ISSUES.md Signed-off-by: Jason Rothstein --- ISSUES.md | 7 +++++-- vars/Fedora-42-default.yml | 7 +++++++ 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 vars/Fedora-42-default.yml diff --git a/ISSUES.md b/ISSUES.md index 87b0539..3893b67 100644 --- a/ISSUES.md +++ b/ISSUES.md @@ -3,9 +3,12 @@ | Vendor | Version | Issue | | ------ | ------- | ----- | +| Alma | 8-9 | Ensure SELinux Python bindings are present | | CentOS | 6 | Ensure ACPI Daemon is both running and present so that OS will respond to physical or virtual ACPI events | | CentOS | 6 | Ensure Python OpenSSL support is updated to handle newer TLS features | -| CentOS | 6-8 | Ensure SELinux Python bindings are present | +| CentOS | 6-9 | Ensure SELinux Python bindings are present | | Debian | All | Ensure apt does not reference non-present CDROM media | | Debian | All | Ensure sudo is present | -| Fedora | 30-33 | Ensure SELinux Python bindings are present | +| Fedora | 30-42 | Ensure SELinux Python bindings are present | +| Oracle | 8-9 | Ensure SELinux Python bindings are present | +| Rocky | 8-9 | Ensure SELinux Python bindings are present | diff --git a/vars/Fedora-42-default.yml b/vars/Fedora-42-default.yml new file mode 100644 index 0000000..61223c4 --- /dev/null +++ b/vars/Fedora-42-default.yml @@ -0,0 +1,7 @@ +--- +# vars file for ensure_ansible_prereq +package_list: + - name: 'python3-libselinux' + state: 'present' + - name: 'python3-libsemanage' + state: 'present'