diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-15 14:28:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 14:28:53 -0700 |
commit | 0f7162d791076e736a7cee3a45051925fa4d0589 (patch) | |
tree | 10751bb96b17a98842fac1cfb4ee5c492064b161 /libpod | |
parent | 3500a8bc39bfc625444fb343a239d607604f06d6 (diff) | |
parent | ac94a96a74e63854ab492e35c6c5c26145a6674a (diff) | |
download | podman-0f7162d791076e736a7cee3a45051925fa4d0589.tar.gz podman-0f7162d791076e736a7cee3a45051925fa4d0589.tar.bz2 podman-0f7162d791076e736a7cee3a45051925fa4d0589.zip |
Merge pull request #5817 from rhatdan/selinux1
Fix up SELinux labeling
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/runtime.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libpod/runtime.go b/libpod/runtime.go index a6032ad23..637f3b43f 100644 --- a/libpod/runtime.go +++ b/libpod/runtime.go @@ -813,3 +813,7 @@ func (r *Runtime) mergeDBConfig(dbConfig *DBConfig) error { } return nil } + +func (r *Runtime) EnableLabeling() bool { + return r.config.Containers.EnableLabeling +} |