aboutsummaryrefslogtreecommitdiff
path: root/pkg/domain/infra/tunnel/images.go
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2020-05-09 09:09:35 -0500
committerBrent Baude <bbaude@redhat.com>2020-05-11 09:18:56 -0500
commitfbd0fccf89f994a90fbc8d63e9c90942acdbc201 (patch)
treeadcf2ca287420b8b46cf860b718cc8769154a89f /pkg/domain/infra/tunnel/images.go
parentd8c6cc16843efac13b92758b1bf93e9d5897a212 (diff)
downloadpodman-fbd0fccf89f994a90fbc8d63e9c90942acdbc201.tar.gz
podman-fbd0fccf89f994a90fbc8d63e9c90942acdbc201.tar.bz2
podman-fbd0fccf89f994a90fbc8d63e9c90942acdbc201.zip
v2podman image sign
this is a straight port to add the podman image sign command. no improvements or refactoring done Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/domain/infra/tunnel/images.go')
-rw-r--r--pkg/domain/infra/tunnel/images.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/domain/infra/tunnel/images.go b/pkg/domain/infra/tunnel/images.go
index 00893194c..788752fd8 100644
--- a/pkg/domain/infra/tunnel/images.go
+++ b/pkg/domain/infra/tunnel/images.go
@@ -264,3 +264,7 @@ func (ir *ImageEngine) Tree(ctx context.Context, nameOrId string, opts entities.
// Shutdown Libpod engine
func (ir *ImageEngine) Shutdown(_ context.Context) {
}
+
+func (ir *ImageEngine) Sign(ctx context.Context, names []string, options entities.SignOptions) (*entities.SignReport, error) {
+ return nil, errors.New("not implemented yet")
+}