From 7f2221d48f7d0df8cc5beed70ff5dbc57bca3529 Mon Sep 17 00:00:00 2001 From: baude Date: Tue, 26 Mar 2019 08:08:40 -0500 Subject: size is optional for container inspection on the remote client, if a user wants to know the rootfs size of a container, a -s should be passed. this corrects a behavior where size was shown by default. Fixes #2765 Signed-off-by: baude --- cmd/podman/varlink/io.podman.varlink | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd/podman/varlink/io.podman.varlink') diff --git a/cmd/podman/varlink/io.podman.varlink b/cmd/podman/varlink/io.podman.varlink index 5999210c8..ad2de56f8 100644 --- a/cmd/podman/varlink/io.podman.varlink +++ b/cmd/podman/varlink/io.podman.varlink @@ -1111,7 +1111,7 @@ method ContainerArtifacts(name: string, artifactName: string) -> (config: string # ContainerInspectData returns a container's inspect data in string form. This call is for # development of Podman only and generally should not be used. -method ContainerInspectData(name: string) -> (config: string) +method ContainerInspectData(name: string, size: bool) -> (config: string) # ContainerStateData returns a container's state config in string form. This call is for # development of Podman only and generally should not be used. -- cgit v1.2.3-54-g00ecf