summaryrefslogtreecommitdiff
path: root/cmd/podman/varlink/io.projectatomic.podman.varlink
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2018-04-30 16:09:44 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2018-04-30 22:22:08 +0000
commit7a0a8552cb4af7af6fc6fb458fd41776f57f543c (patch)
tree17ef51ef1901ea339bdddc2201069e5dc86363a3 /cmd/podman/varlink/io.projectatomic.podman.varlink
parent2239093a6321ac3fb634117e69de73017530a498 (diff)
downloadpodman-7a0a8552cb4af7af6fc6fb458fd41776f57f543c.tar.gz
podman-7a0a8552cb4af7af6fc6fb458fd41776f57f543c.tar.bz2
podman-7a0a8552cb4af7af6fc6fb458fd41776f57f543c.zip
Fix misc stuff found by jhonce
During the python client implementation, jhonce found some return types that needed correction as well as a panic related to history which is now corrected. Signed-off-by: baude <bbaude@redhat.com> Closes: #704 Approved by: rhatdan
Diffstat (limited to 'cmd/podman/varlink/io.projectatomic.podman.varlink')
-rw-r--r--cmd/podman/varlink/io.projectatomic.podman.varlink4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/podman/varlink/io.projectatomic.podman.varlink b/cmd/podman/varlink/io.projectatomic.podman.varlink
index ff53eb2ec..92d540b96 100644
--- a/cmd/podman/varlink/io.projectatomic.podman.varlink
+++ b/cmd/podman/varlink/io.projectatomic.podman.varlink
@@ -88,11 +88,11 @@ method InspectImage(name: string) -> (image: string)
method HistoryImage(name: string) -> (history: []ImageHistory)
method PushImage(name: string, tag: string, tlsverify: bool) -> ()
method TagImage(name: string, tagged: string) -> ()
-method RemoveImage(name: string, force: bool) -> ()
+method RemoveImage(name: string, force: bool) -> (image: string)
method SearchImage(name: string, limit: int) -> (images: []ImageSearch)
method DeleteUnusedImages() -> (images: []string)
method CreateFromContainer() -> (notimplemented: NotImplemented)
-method ImportImage(source: string, reference: string, message: string, changes: []string) -> (id: string)
+method ImportImage(source: string, reference: string, message: string, changes: []string) -> (image: string)
method ExportImage(name: string, destination: string, compress: bool) -> ()
method PullImage(name: string) -> (id: string)