diff options
author | baude <bbaude@redhat.com> | 2018-05-11 09:39:34 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-05-11 16:05:10 +0000 |
commit | 9657cd6c15372f8c655ec13ce4f0310ff5d6a7a1 (patch) | |
tree | 6aae448f8c409e8b55a7343dbbdc2bb2464a6c0d /pkg | |
parent | c339c5bb6e1d3d894d8020dc63ae8cf3c2f50e56 (diff) | |
download | podman-9657cd6c15372f8c655ec13ce4f0310ff5d6a7a1.tar.gz podman-9657cd6c15372f8c655ec13ce4f0310ff5d6a7a1.tar.bz2 podman-9657cd6c15372f8c655ec13ce4f0310ff5d6a7a1.zip |
Fix varlink remove image force
Fixes a bug where the force bool was being ignored when deleting images
via the varlink interface.
Also, minor fix to the docs to add a line break between methods and types in
the doc index.
Signed-off-by: baude <bbaude@redhat.com>
Closes: #753
Approved by: rhatdan
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/varlinkapi/images.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pkg/varlinkapi/images.go b/pkg/varlinkapi/images.go index 981a4d9a0..dc246fd7a 100644 --- a/pkg/varlinkapi/images.go +++ b/pkg/varlinkapi/images.go @@ -170,10 +170,11 @@ func (i *LibpodAPI) RemoveImage(call ioprojectatomicpodman.VarlinkCall, name str if err != nil { return call.ReplyImageNotFound(name) } - if err := newImage.Remove(force); err != nil { + imageID, err := runtime.RemoveImage(newImage, force) + if err != nil { return call.ReplyErrorOccurred(err.Error()) } - return call.ReplyRemoveImage(newImage.ID()) + return call.ReplyRemoveImage(imageID) } // SearchImage searches all registries configured in /etc/containers/registries.conf for an image |