diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-05-08 15:59:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-08 15:59:28 -0400 |
commit | 5c7ac1ba7812a99e59251cf49f7fb2a9c2429e11 (patch) | |
tree | fc02557c9f4de15b3489da0155d826cbe2cfd8a4 /pkg/domain/entities | |
parent | 7f8b31f5fb59d8b66a26dcd822863fbc18687905 (diff) | |
parent | 1074a02ff85bb9f1d0db3e4468b067a6516b1521 (diff) | |
download | podman-5c7ac1ba7812a99e59251cf49f7fb2a9c2429e11.tar.gz podman-5c7ac1ba7812a99e59251cf49f7fb2a9c2429e11.tar.bz2 podman-5c7ac1ba7812a99e59251cf49f7fb2a9c2429e11.zip |
Merge pull request #6146 from baude/v2unshare
v2 podman unshare command
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/engine_container.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/domain/entities/engine_container.go b/pkg/domain/entities/engine_container.go index 7c93e6802..bb13794bd 100644 --- a/pkg/domain/entities/engine_container.go +++ b/pkg/domain/entities/engine_container.go @@ -71,6 +71,7 @@ type ContainerEngine interface { SetupRootless(ctx context.Context, cmd *cobra.Command) error Shutdown(ctx context.Context) SystemDf(ctx context.Context, options SystemDfOptions) (*SystemDfReport, error) + Unshare(ctx context.Context, args []string) error VarlinkService(ctx context.Context, opts ServiceOptions) error VolumeCreate(ctx context.Context, opts VolumeCreateOptions) (*IdOrNameResponse, error) VolumeInspect(ctx context.Context, namesOrIds []string, opts VolumeInspectOptions) ([]*VolumeInspectReport, error) |