From 301d8e427fbd64889812346b994998b5b8e13fe8 Mon Sep 17 00:00:00 2001 From: muagarwa Date: Thu, 23 Apr 2020 16:20:12 +0530 Subject: [PATCH] Makefile: Fix CONTAINER_OPTS for Fedora make test-container is failing on Fedora based distribution because of bad label option "disabled". Change label option to "disable" Signed-off-by: Mudit Agarwal --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d450cc8..ffcd9f1 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ DOCKER_CI_IMAGE = go-ceph-ci CONTAINER_CMD := docker -CONTAINER_OPTS := --security-opt $(shell grep -q selinux /sys/kernel/security/lsm && echo "label=disabled" || echo "apparmor:unconfined") +CONTAINER_OPTS := --security-opt $(shell grep -q selinux /sys/kernel/security/lsm && echo "label=disable" || echo "apparmor:unconfined") CONTAINER_CONFIG_DIR := testing/containers/ceph VOLUME_FLAGS := CEPH_VERSION := nautilus