diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-01-18 11:46:10 -0500 |
---|---|---|
committer | Matthew Heon <matthew.heon@gmail.com> | 2018-01-18 11:48:20 -0500 |
commit | 4f2bf5ba1c27d686c0405e008a07d642d5a1e510 (patch) | |
tree | c9260f74181b313ec718ed535e4451b31c452e2e /libpod/container_internal.go | |
parent | 64d2190ec1a0a763962cf6e4c8f8420fa88cc3e5 (diff) | |
download | podman-4f2bf5ba1c27d686c0405e008a07d642d5a1e510.tar.gz podman-4f2bf5ba1c27d686c0405e008a07d642d5a1e510.tar.bz2 podman-4f2bf5ba1c27d686c0405e008a07d642d5a1e510.zip |
Rename ContainerState to ContainerStatus
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Diffstat (limited to 'libpod/container_internal.go')
-rw-r--r-- | libpod/container_internal.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libpod/container_internal.go b/libpod/container_internal.go index 245246869..73f9c6961 100644 --- a/libpod/container_internal.go +++ b/libpod/container_internal.go @@ -22,6 +22,12 @@ import ( "golang.org/x/sys/unix" ) +const ( + // name of the directory holding the artifacts + artifactsDir = "artifacts" + +) + // rootFsSize gets the size of the container's root filesystem // A container FS is split into two parts. The first is the top layer, a // mutable layer, and the rest is the RootFS: the set of immutable layers |