diff options
author | Brent Baude <bbaude@redhat.com> | 2020-05-08 13:09:11 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-05-08 13:28:11 -0500 |
commit | 1074a02ff85bb9f1d0db3e4468b067a6516b1521 (patch) | |
tree | 85335edcc852b85b35dbbe4fbcde27c486c84810 /pkg/domain/infra/tunnel/system.go | |
parent | b2e8915baa22098fbde39b73ad0f18326ec2842b (diff) | |
download | podman-1074a02ff85bb9f1d0db3e4468b067a6516b1521.tar.gz podman-1074a02ff85bb9f1d0db3e4468b067a6516b1521.tar.bz2 podman-1074a02ff85bb9f1d0db3e4468b067a6516b1521.zip |
v2 podman unshare command
add unshare command
add cp and init to container sub-command
allow mount to run as rootless
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/domain/infra/tunnel/system.go')
-rw-r--r-- | pkg/domain/infra/tunnel/system.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/domain/infra/tunnel/system.go b/pkg/domain/infra/tunnel/system.go index 448fbed1f..d00795741 100644 --- a/pkg/domain/infra/tunnel/system.go +++ b/pkg/domain/infra/tunnel/system.go @@ -30,3 +30,7 @@ func (ic *ContainerEngine) SystemPrune(ctx context.Context, options entities.Sys func (ic *ContainerEngine) SystemDf(ctx context.Context, options entities.SystemDfOptions) (*entities.SystemDfReport, error) { panic(errors.New("system df is not supported on remote clients")) } + +func (ic *ContainerEngine) Unshare(ctx context.Context, args []string) error { + return errors.New("unshare is not supported on remote clients") +} |