diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-06-21 11:09:17 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-06-22 19:26:46 +0000 |
commit | c3602075ec6ee535e2fbf3e4fcf2ecbd27fa22c9 (patch) | |
tree | 80330aed0ce1e21103307be4dd6d1d7afeb49c14 /libpod/container.go | |
parent | d2f981fd0babda31c89ac031dabc671d76b8f25a (diff) | |
download | podman-c3602075ec6ee535e2fbf3e4fcf2ecbd27fa22c9.tar.gz podman-c3602075ec6ee535e2fbf3e4fcf2ecbd27fa22c9.tar.bz2 podman-c3602075ec6ee535e2fbf3e4fcf2ecbd27fa22c9.zip |
Make CGroups cleanup optional on whether they exist
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #981
Approved by: baude
Diffstat (limited to 'libpod/container.go')
-rw-r--r-- | libpod/container.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libpod/container.go b/libpod/container.go index a30a9e006..37dabd80d 100644 --- a/libpod/container.go +++ b/libpod/container.go @@ -167,6 +167,9 @@ type containerState struct { // the path of the file on disk outside the container BindMounts map[string]string `json:"bindMounts,omitempty"` + // CgroupCreated indicates that the container has created a cgroup + CgroupCreated bool `json:"cgroupCreated,omitempty"` + // UserNSRoot is the directory used as root for the container when using // user namespaces. UserNSRoot string `json:"userNSRoot,omitempty"` |