summaryrefslogtreecommitdiff
path: root/cmd/podman
diff options
context:
space:
mode:
authorQi Wang <qiwan@redhat.com>2018-08-15 14:29:03 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-08-16 15:35:28 +0000
commit1003df344424dc3b2bb7f957818359105dbfe4be (patch)
treefd9cae2f42037f5bc2ed5927ad78fea6ae5f8fac /cmd/podman
parentfee9f180fe74b99b408c3c26be12ab25160e3ff1 (diff)
downloadpodman-1003df344424dc3b2bb7f957818359105dbfe4be.tar.gz
podman-1003df344424dc3b2bb7f957818359105dbfe4be.tar.bz2
podman-1003df344424dc3b2bb7f957818359105dbfe4be.zip
Suport format param for varlink Commit
We need to pass the image format OCI or docker in the varlink commit command. Signed-off-by: Qi Wang <qiwan@redhat.com> Closes: #1281 Approved by: mheon
Diffstat (limited to 'cmd/podman')
-rw-r--r--cmd/podman/varlink/io.podman.varlink2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/varlink/io.podman.varlink b/cmd/podman/varlink/io.podman.varlink
index 336600b2f..2cc381c5a 100644
--- a/cmd/podman/varlink/io.podman.varlink
+++ b/cmd/podman/varlink/io.podman.varlink
@@ -605,7 +605,7 @@ method DeleteUnusedImages() -> (images: []string)
# container while it is being committed, pass a _true_ bool for the pause argument. If the container cannot
# be found by the ID or name provided, a (ContainerNotFound)[#ContainerNotFound] error will be returned; otherwise,
# the resulting image's ID will be returned as a string.
-method Commit(name: string, image_name: string, changes: []string, author: string, message: string, pause: bool) -> (image: string)
+method Commit(name: string, image_name: string, changes: []string, author: string, message: string, pause: bool, manifestType: string) -> (image: string)
# ImportImage imports an image from a source (like tarball) into local storage. The image can have additional
# descriptions added to it using the message and changes options. See also [ExportImage](ExportImage).