From 735763c486c0be541c4772b4b39be8e0b6134f92 Mon Sep 17 00:00:00 2001 From: Milos Malik Date: Oct 13 2021 18:35:51 +0000 Subject: require the service command instead of its package Recently, the service command was moved from the initscripts package to the initscripts-service package. The service command is necessary for operations with audit daemon, because it's not possible to restart the audit daemon using the systemctl command. Now, the SELinux beaker library requires the /usr/sbin/service command instead of a package name. --- diff --git a/selinux-policy/Library/common/Makefile b/selinux-policy/Library/common/Makefile index 07d41bb..b274700 100644 --- a/selinux-policy/Library/common/Makefile +++ b/selinux-policy/Library/common/Makefile @@ -46,11 +46,11 @@ $(METADATA): Makefile @echo "Description: Common library for SELinux related components" >> $(METADATA) @echo "Type: Library" >> $(METADATA) @echo "TestTime: 120m" >> $(METADATA) - @echo "Requires: setools" >> $(METADATA) @echo "Requires: setools-console" >> $(METADATA) @echo "Requires: expect" >> $(METADATA) @echo "Requires: policycoreutils" >> $(METADATA) @echo "Requires: /usr/sbin/semanage" >> $(METADATA) + @echo "Requires: /usr/sbin/service" >> $(METADATA) @echo "Requires: selinux-policy-devel" >> $(METADATA) @echo "Requires: yum-utils" >> $(METADATA) @echo "Requires: python3 sqlite" >> $(METADATA)