diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-04-28 15:40:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-28 15:40:30 -0400 |
commit | db67fedcbd1fcaf06d0d6655face5182ccd0cc87 (patch) | |
tree | f3bd173fc406903531cd451b3155720194fa2272 /libpod/define/info.go | |
parent | 928dce57dfb11c110801547b9852aa4f87e37bb4 (diff) | |
parent | 18cb17ffeb33195879730b2bc83e1a2c82310e6a (diff) | |
download | podman-db67fedcbd1fcaf06d0d6655face5182ccd0cc87.tar.gz podman-db67fedcbd1fcaf06d0d6655face5182ccd0cc87.tar.bz2 podman-db67fedcbd1fcaf06d0d6655face5182ccd0cc87.zip |
Merge pull request #10155 from pablofsf/fix-default-seccomp
Use seccomp_profile as default profile if defined in containers.conf
Diffstat (limited to 'libpod/define/info.go')
-rw-r--r-- | libpod/define/info.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libpod/define/info.go b/libpod/define/info.go index 00146da48..87935be2d 100644 --- a/libpod/define/info.go +++ b/libpod/define/info.go @@ -17,6 +17,7 @@ type SecurityInfo struct { DefaultCapabilities string `json:"capabilities"` Rootless bool `json:"rootless"` SECCOMPEnabled bool `json:"seccompEnabled"` + SECCOMPProfilePath string `json:"seccompProfilePath"` SELinuxEnabled bool `json:"selinuxEnabled"` } |