diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2021-03-29 09:49:38 -0400 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2021-04-16 14:00:14 -0400 |
commit | 32f61dbf73538ea97a0cdabb6593c5a2b96f7171 (patch) | |
tree | a85a7d87a11e5bb8615850bd853b88f332fed92b /pkg/specgen/generate/container_create.go | |
parent | c8130be174e0f5209661ab454bee37a3765d1b04 (diff) | |
download | podman-32f61dbf73538ea97a0cdabb6593c5a2b96f7171.tar.gz podman-32f61dbf73538ea97a0cdabb6593c5a2b96f7171.tar.bz2 podman-32f61dbf73538ea97a0cdabb6593c5a2b96f7171.zip |
[NO TESTS NEEDED] Shrink the size of podman-remote
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'pkg/specgen/generate/container_create.go')
-rw-r--r-- | pkg/specgen/generate/container_create.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/specgen/generate/container_create.go b/pkg/specgen/generate/container_create.go index 03697b353..1d724ffb0 100644 --- a/pkg/specgen/generate/container_create.go +++ b/pkg/specgen/generate/container_create.go @@ -11,7 +11,7 @@ import ( "github.com/containers/podman/v3/libpod/image" "github.com/containers/podman/v3/pkg/specgen" "github.com/containers/podman/v3/pkg/util" - "github.com/containers/storage" + "github.com/containers/storage/types" "github.com/opencontainers/selinux/go-selinux/label" "github.com/pkg/errors" "github.com/sirupsen/logrus" @@ -367,7 +367,7 @@ func createContainerOptions(ctx context.Context, rt *libpod.Runtime, s *specgen. return options, nil } -func CreateExitCommandArgs(storageConfig storage.StoreOptions, config *config.Config, syslog, rm, exec bool) ([]string, error) { +func CreateExitCommandArgs(storageConfig types.StoreOptions, config *config.Config, syslog, rm, exec bool) ([]string, error) { // We need a cleanup process for containers in the current model. // But we can't assume that the caller is Podman - it could be another // user of the API. |