diff options
Diffstat (limited to 'pkg/apparmor/apparmor_linux.go')
-rw-r--r-- | pkg/apparmor/apparmor_linux.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pkg/apparmor/apparmor_linux.go b/pkg/apparmor/apparmor_linux.go index 6e8b7f312..a09c5fc44 100644 --- a/pkg/apparmor/apparmor_linux.go +++ b/pkg/apparmor/apparmor_linux.go @@ -10,8 +10,15 @@ import ( "path" "strings" "text/template" + + runcaa "github.com/opencontainers/runc/libcontainer/apparmor" ) +// IsEnabled returns true if AppArmor is enabled on the host. +func IsEnabled() bool { + return runcaa.IsEnabled() +} + // profileData holds information about the given profile for generation. type profileData struct { // Name is profile name. |