diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-02-28 09:29:46 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-03-01 21:17:51 +0000 |
commit | c5dc7f81fc5a1078b0bc66bd9e7a1f23a03242c5 (patch) | |
tree | f0f80eecfc6bd3b4a03b41d43ebef52207cbe1ca /libpod/runtime_pod.go | |
parent | fa5f99effa7dd2ef9fbd5287b6225590b28713d1 (diff) | |
download | podman-c5dc7f81fc5a1078b0bc66bd9e7a1f23a03242c5.tar.gz podman-c5dc7f81fc5a1078b0bc66bd9e7a1f23a03242c5.tar.bz2 podman-c5dc7f81fc5a1078b0bc66bd9e7a1f23a03242c5.zip |
Replace usage of runc with runtime
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #412
Approved by: baude
Diffstat (limited to 'libpod/runtime_pod.go')
-rw-r--r-- | libpod/runtime_pod.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpod/runtime_pod.go b/libpod/runtime_pod.go index 0debb7924..3619a7a82 100644 --- a/libpod/runtime_pod.go +++ b/libpod/runtime_pod.go @@ -162,11 +162,11 @@ func (r *Runtime) RemovePod(p *Pod, removeCtrs, force bool) error { return err } - // Delete the container from runc (only if we are not + // Delete the container from runtime (only if we are not // ContainerStateConfigured) if ctr.state.State != ContainerStateConfigured { if err := r.ociRuntime.deleteContainer(ctr); err != nil { - return errors.Wrapf(err, "error removing container %s from runc", ctr.ID()) + return errors.Wrapf(err, "error removing container %s from runtime", ctr.ID()) } } |