From 8569ed03056ce39e0dc163747089ed4b60b1b9b1 Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Sun, 22 Jul 2018 17:45:36 +0200 Subject: AppArmor: runtime check if it's enabled on the host Check at runtime if AppArmor is enabled on the host. Signed-off-by: Valentin Rothberg Closes: #1128 Approved by: mheon --- hack/apparmor_tag.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'hack') diff --git a/hack/apparmor_tag.sh b/hack/apparmor_tag.sh index 6d4bec91b..0fd222210 100755 --- a/hack/apparmor_tag.sh +++ b/hack/apparmor_tag.sh @@ -1,7 +1,4 @@ #!/bin/bash if pkg-config libapparmor 2> /dev/null ; then - # Travis CI does not support AppArmor, so we cannot run tests there. - if [ -z "$TRAVIS" ]; then - echo apparmor - fi + echo apparmor fi -- cgit v1.2.3-54-g00ecf