From 43a1686598c92c9e2a839909b8b5edb9f1b0f00f Mon Sep 17 00:00:00 2001 From: baude Date: Sat, 23 Feb 2019 19:36:19 -0600 Subject: podman-remote create|ps enable the podman-remote client to be able to create and list pods on a remote system. Signed-off-by: baude --- pkg/varlinkapi/pods.go | 4 ---- 1 file changed, 4 deletions(-) (limited to 'pkg/varlinkapi') diff --git a/pkg/varlinkapi/pods.go b/pkg/varlinkapi/pods.go index a343bfd53..738a10b2a 100644 --- a/pkg/varlinkapi/pods.go +++ b/pkg/varlinkapi/pods.go @@ -14,10 +14,6 @@ import ( // CreatePod ... func (i *LibpodAPI) CreatePod(call iopodman.VarlinkCall, create iopodman.PodCreate) error { var options []libpod.PodCreateOption - - if create.InfraCommand != "" || create.InfraImage != "" { - return call.ReplyErrorOccurred("the infra-command and infra-image options are not supported yet") - } if create.CgroupParent != "" { options = append(options, libpod.WithPodCgroupParent(create.CgroupParent)) } -- cgit v1.2.3-54-g00ecf