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 <github@gone.nl>
This commit is contained in:
parent
a9507c6f76
commit
5dbfae6949
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue