diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-05-07 19:28:38 +0200 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-05-08 11:13:42 +0200 |
commit | 051a2bf4378bf73f5dba14b03afb53fd09e2f3f9 (patch) | |
tree | c2343b9fa53fe2b19e2c2e30536cd62131ddca1a /pkg/domain/infra/tunnel | |
parent | ab518cdba02b85a32d3c2bce4c0b65dcdea4dfcc (diff) | |
download | podman-051a2bf4378bf73f5dba14b03afb53fd09e2f3f9.tar.gz podman-051a2bf4378bf73f5dba14b03afb53fd09e2f3f9.tar.bz2 podman-051a2bf4378bf73f5dba14b03afb53fd09e2f3f9.zip |
auto-update
Add the `podman auto-update` command. There have been no tests in v1, so
there are no in v2 either ... for now :)
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'pkg/domain/infra/tunnel')
-rw-r--r-- | pkg/domain/infra/tunnel/auto-update.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pkg/domain/infra/tunnel/auto-update.go b/pkg/domain/infra/tunnel/auto-update.go new file mode 100644 index 000000000..fac033050 --- /dev/null +++ b/pkg/domain/infra/tunnel/auto-update.go @@ -0,0 +1,12 @@ +package tunnel + +import ( + "context" + + "github.com/containers/libpod/pkg/domain/entities" + "github.com/pkg/errors" +) + +func (ic *ContainerEngine) AutoUpdate(ctx context.Context) (*entities.AutoUpdateReport, []error) { + return nil, []error{errors.New("not implemented")} +} |