diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-03-07 11:15:00 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-03-08 16:40:21 +0000 |
commit | d23b9fd4ed96cbf03c5da3af6bc5837d9998a75a (patch) | |
tree | 6871bb77a274e8a17e847080e6cf11e03fb97be8 /libpod/container.go | |
parent | 04d56c9fe30235c9f99cf816fc6078fa5b2f1512 (diff) | |
download | podman-d23b9fd4ed96cbf03c5da3af6bc5837d9998a75a.tar.gz podman-d23b9fd4ed96cbf03c5da3af6bc5837d9998a75a.tar.bz2 podman-d23b9fd4ed96cbf03c5da3af6bc5837d9998a75a.zip |
Refactor saving OCI spec to disk into separate function
It will be needed for restarting containers
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #462
Approved by: baude
Diffstat (limited to 'libpod/container.go')
-rw-r--r-- | libpod/container.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libpod/container.go b/libpod/container.go index b6c3d1f40..96fda27c1 100644 --- a/libpod/container.go +++ b/libpod/container.go @@ -94,8 +94,6 @@ func (ns LinuxNS) String() string { type Container struct { config *ContainerConfig - runningSpec *spec.Spec - state *containerState // Locked indicates that a container has been locked as part of a |