From ba430bfe5ef65d5aa5ffa1fef0087da76aafcc35 Mon Sep 17 00:00:00 2001 From: Brent Baude Date: Thu, 16 Apr 2020 08:39:34 -0500 Subject: podman v2 remove bloat v2 rid ourseleves of libpod references in v2 client Signed-off-by: Brent Baude --- cmd/podmanV2/common/specgen.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmd/podmanV2/common/specgen.go') diff --git a/cmd/podmanV2/common/specgen.go b/cmd/podmanV2/common/specgen.go index 5245e206e..2232fb4ba 100644 --- a/cmd/podmanV2/common/specgen.go +++ b/cmd/podmanV2/common/specgen.go @@ -11,7 +11,7 @@ import ( "github.com/containers/image/v5/manifest" "github.com/containers/libpod/cmd/podmanV2/parse" - "github.com/containers/libpod/libpod" + "github.com/containers/libpod/libpod/define" ann "github.com/containers/libpod/pkg/annotations" envLib "github.com/containers/libpod/pkg/env" ns "github.com/containers/libpod/pkg/namespaces" @@ -324,7 +324,7 @@ func FillOutSpecGen(s *specgen.SpecGenerator, c *ContainerCLIOpts, args []string if s.LogConfiguration == nil { s.LogConfiguration = &specgen.LogConfig{} } - s.LogConfiguration.Driver = libpod.KubernetesLogging + s.LogConfiguration.Driver = define.KubernetesLogging if ld := c.LogDriver; len(ld) > 0 { s.LogConfiguration.Driver = ld } -- cgit v1.2.3-54-g00ecf