From 5dbfae694919b1aff76f360061b4065349bf1900 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Thu, 9 Jan 2020 18:49:11 +0100 Subject: [PATCH] hack/make: ignore failure to stop apparmor ``` ---> Making bundle: .integration-daemon-stop (in bundles/test-integration) ++++ cat bundles/test-integration/docker.pid +++ kill 13137 +++ /etc/init.d/apparmor stop Leaving: AppArmorNo profiles have been unloaded. Unloading profiles will leave already running processes permanently unconfined, which can lead to unexpected situations. To set a process to complain mode, use the command line tool 'aa-complain'. To really tear down all profiles, run 'aa-teardown'." script returned exit code 255 ``` Signed-off-by: Sebastiaan van Stijn --- hack/make/.integration-daemon-stop | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/make/.integration-daemon-stop b/hack/make/.integration-daemon-stop index 4f7c8acb8e..82d9c3f242 100644 --- a/hack/make/.integration-daemon-stop +++ b/hack/make/.integration-daemon-stop @@ -21,7 +21,7 @@ if [ ! "$(go env GOOS)" = 'windows' ]; then if [ -e "/sys/module/apparmor/parameters/enabled" ] && [ "$(cat /sys/module/apparmor/parameters/enabled)" == "Y" ]; then ( [ -n "$TESTDEBUG" ] && set -x - /etc/init.d/apparmor stop + /etc/init.d/apparmor stop || true ) fi fi