mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-07-14 15:43:35 +00:00

AppArmor ships /lib/apparmor/profile-load. /lib/init/apparmor-profile-load is merely a wrapper which calls the former, so just call it directly to avoid the dependency on the wrapper. LP: #1432683
15 lines
370 B
Bash
Executable File
15 lines
370 B
Bash
Executable File
#!/bin/sh
|
|
# lxc-apparmor-load: Load AppArmor profiles, if supported by the system
|
|
|
|
set -eu
|
|
|
|
# don't load profiles if mount mediation is not supported
|
|
SYSF=/sys/kernel/security/apparmor/features/mount/mask
|
|
if [ -f $SYSF ]; then
|
|
if [ -x /lib/apparmor/profile-load ]; then
|
|
/lib/apparmor/profile-load usr.bin.lxc-start
|
|
/lib/apparmor/profile-load lxc-containers
|
|
fi
|
|
fi
|
|
|