Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.41.1 #3478

Merged
merged 2 commits into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
Releases
======================

tmt-1.41.1
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Fedora Rawhide transitioned files from ``/usr/sbin`` to
``/usr/bin``, breaking path-based requirements installation for
the AVC check. This update adjusts the check to rely on packages,
restoring the functionality on Fedora Rawhide.

tmt-1.41.0
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
6 changes: 4 additions & 2 deletions tmt/checks/avc.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,9 +301,11 @@ def essential_requires(
# Avoid circular imports
import tmt.base

# Note: yes, this will most likely explode in any distro outside
# of Fedora, CentOS and RHEL.
return [
tmt.base.DependencySimple('/usr/sbin/sestatus'),
tmt.base.DependencySimple('/usr/sbin/ausearch')
tmt.base.DependencySimple('audit'),
tmt.base.DependencySimple('policycoreutils')
]

@classmethod
Expand Down
Loading