From d5a80cf3cfa8710636a6de28cbfde665039d6a6c Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Thu, 10 Sep 2020 19:45:56 +0200 Subject: [PATCH] test: manually install container-selinux Seems to not be pulled in. Don't disable selinux. --- test/integration.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/integration.sh b/test/integration.sh index c12283b..0f937b6 100755 --- a/test/integration.sh +++ b/test/integration.sh @@ -9,9 +9,6 @@ function greenprint { source /etc/os-release ARCH=$(uname -m) -greenprint "Disable SELinux" -sudo setenforce 0 - if [[ $ID == rhel ]] && ! rpm -q epel-release; then greenprint "📦 Setting up EPEL repository" curl -Ls --retry 5 --output /tmp/epel.rpm \ @@ -21,6 +18,7 @@ fi greenprint "Installing required packages" sudo dnf -y install \ + container-selinux \ dnsmasq \ jq \ krb5-workstation \