diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-04-12 09:38:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-12 09:38:48 -0700 |
commit | 61fa40b25679f864db5b5b375d512a9f1264e31f (patch) | |
tree | 8986c1a4718a34129393fed8a2cfb21864b93d21 /libpod/runtime_ctr.go | |
parent | 6ddc67c694dc60641606955364fe23b1c38406ac (diff) | |
parent | f7951c8776cea5eeddd8838ac6a4f41f518032fd (diff) | |
download | podman-61fa40b25679f864db5b5b375d512a9f1264e31f.tar.gz podman-61fa40b25679f864db5b5b375d512a9f1264e31f.tar.bz2 podman-61fa40b25679f864db5b5b375d512a9f1264e31f.zip |
Merge pull request #2913 from mheon/get_instead_of_lookup
Use GetContainer instead of LookupContainer for full ID
Diffstat (limited to 'libpod/runtime_ctr.go')
-rw-r--r-- | libpod/runtime_ctr.go | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libpod/runtime_ctr.go b/libpod/runtime_ctr.go index 85b860268..48c254c0f 100644 --- a/libpod/runtime_ctr.go +++ b/libpod/runtime_ctr.go @@ -548,16 +548,6 @@ func (r *Runtime) GetLatestContainer() (*Container, error) { return ctrs[lastCreatedIndex], nil } -// Export is the libpod portion of exporting a container to a tar file -func (r *Runtime) Export(name string, path string) error { - ctr, err := r.LookupContainer(name) - if err != nil { - return err - } - return ctr.Export(path) - -} - // RemoveContainersFromStorage attempt to remove containers from storage that do not exist in libpod database func (r *Runtime) RemoveContainersFromStorage(ctrs []string) { for _, i := range ctrs { |