diff options
author | Jhon Honce <jhonce@redhat.com> | 2020-04-22 11:45:31 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2020-04-22 14:25:40 -0700 |
commit | 565f93531eae65ca85c286bf6bd2aa07eb713976 (patch) | |
tree | a36ef0168a0edbd34a5eb539d24062b9ad788aa0 /pkg/domain/infra/abi/containers.go | |
parent | 142757bd7288ccdb88d8f1322932f999ffb18c02 (diff) | |
download | podman-565f93531eae65ca85c286bf6bd2aa07eb713976.tar.gz podman-565f93531eae65ca85c286bf6bd2aa07eb713976.tar.bz2 podman-565f93531eae65ca85c286bf6bd2aa07eb713976.zip |
V2 restore libpod.Shutdown() when exiting podman commands
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'pkg/domain/infra/abi/containers.go')
-rw-r--r-- | pkg/domain/infra/abi/containers.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pkg/domain/infra/abi/containers.go b/pkg/domain/infra/abi/containers.go index 73a0d8ec3..a77b18ce1 100644 --- a/pkg/domain/infra/abi/containers.go +++ b/pkg/domain/infra/abi/containers.go @@ -957,3 +957,10 @@ func (ic *ContainerEngine) ContainerPort(ctx context.Context, nameOrId string, o } return reports, nil } + +// Shutdown Libpod engine +func (ic *ContainerEngine) Shutdown(_ context.Context) { + shutdownSync.Do(func() { + _ = ic.Libpod.Shutdown(false) + }) +} |