summaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-07-22 15:38:42 +0200
committerGitHub <noreply@github.com>2020-07-22 15:38:42 +0200
commit80add2902cf3561d2c9f91dc045076519cd297d5 (patch)
tree2c9b51e5b32158c96142bef6168114380bf4260a /libpod
parent9f5d1462be20c86afe363750ecc20ee89e0b3978 (diff)
parent4c4a00f63ea5bc7956bf40be457bf86643575dce (diff)
downloadpodman-80add2902cf3561d2c9f91dc045076519cd297d5.tar.gz
podman-80add2902cf3561d2c9f91dc045076519cd297d5.tar.bz2
podman-80add2902cf3561d2c9f91dc045076519cd297d5.zip
Merge pull request #6992 from rhatdan/apparmor
Support default profile for apparmor
Diffstat (limited to 'libpod')
-rw-r--r--libpod/container_internal_linux.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container_internal_linux.go b/libpod/container_internal_linux.go
index edea62a0d..09bf33728 100644
--- a/libpod/container_internal_linux.go
+++ b/libpod/container_internal_linux.go
@@ -250,7 +250,7 @@ func (c *Container) generateSpec(ctx context.Context) (*spec.Spec, error) {
}
// Apply AppArmor checks and load the default profile if needed.
- if !c.config.Privileged {
+ if len(c.config.Spec.Process.ApparmorProfile) > 0 {
updatedProfile, err := apparmor.CheckProfileAndLoadDefault(c.config.Spec.Process.ApparmorProfile)
if err != nil {
return nil, err