diff --git a/tmt/checks/avc.py b/tmt/checks/avc.py index 96694440ee..da45e359fa 100644 --- a/tmt/checks/avc.py +++ b/tmt/checks/avc.py @@ -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