summaryrefslogtreecommitdiff
path: root/pkg/domain/infra/tunnel
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2020-04-04 08:35:23 -0500
committerBrent Baude <bbaude@redhat.com>2020-04-06 09:26:11 -0500
commit5e0b4497365f9b3c2d795e5771a3abec7cd24cbb (patch)
tree169fd388ae4b8576c7a4e451276447a88343e79c /pkg/domain/infra/tunnel
parentba64186750a23675f42744ca4203b524e7b1b378 (diff)
downloadpodman-5e0b4497365f9b3c2d795e5771a3abec7cd24cbb.tar.gz
podman-5e0b4497365f9b3c2d795e5771a3abec7cd24cbb.tar.bz2
podman-5e0b4497365f9b3c2d795e5771a3abec7cd24cbb.zip
podmanv2 start
add the ability to start containers Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/domain/infra/tunnel')
-rw-r--r--pkg/domain/infra/tunnel/containers.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/domain/infra/tunnel/containers.go b/pkg/domain/infra/tunnel/containers.go
index 1e71cba2c..4101068ba 100644
--- a/pkg/domain/infra/tunnel/containers.go
+++ b/pkg/domain/infra/tunnel/containers.go
@@ -313,3 +313,7 @@ func (ic *ContainerEngine) ContainerAttach(ctx context.Context, nameOrId string,
func (ic *ContainerEngine) ContainerExec(ctx context.Context, nameOrId string, options entities.ExecOptions) (int, error) {
return 125, errors.New("not implemented")
}
+
+func (ic *ContainerEngine) ContainerStart(ctx context.Context, namesOrIds []string, options entities.ContainerStartOptions) ([]*entities.ContainerStartReport, error) {
+ return nil, errors.New("not implemented")
+}