summaryrefslogtreecommitdiff
path: root/pkg/domain/entities
diff options
context:
space:
mode:
authorPaul Holzinger <pholzing@redhat.com>2021-09-16 11:01:52 +0200
committerPaul Holzinger <pholzing@redhat.com>2021-09-16 11:01:52 +0200
commit5c7935057c34cbdb27be3a584d35bff3fcd81202 (patch)
tree6fd4ff71cc95308d655a0d52bf01affae13f2c92 /pkg/domain/entities
parent9119a578e782b92bd344f093f5491c318bc20d69 (diff)
downloadpodman-5c7935057c34cbdb27be3a584d35bff3fcd81202.tar.gz
podman-5c7935057c34cbdb27be3a584d35bff3fcd81202.tar.bz2
podman-5c7935057c34cbdb27be3a584d35bff3fcd81202.zip
Do not allow network modes to be used as network names
`podman network create` should not allow users to create networks with a name which is already used for a network mode in `podman run --network`. Fixes #11448 Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r--pkg/domain/entities/engine_container.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/entities/engine_container.go b/pkg/domain/entities/engine_container.go
index b916d6fc6..383e42098 100644
--- a/pkg/domain/entities/engine_container.go
+++ b/pkg/domain/entities/engine_container.go
@@ -59,7 +59,7 @@ type ContainerEngine interface {
HealthCheckRun(ctx context.Context, nameOrID string, options HealthCheckOptions) (*define.HealthCheckResults, error)
Info(ctx context.Context) (*define.Info, error)
NetworkConnect(ctx context.Context, networkname string, options NetworkConnectOptions) error
- NetworkCreate(ctx context.Context, network types.Network) (*NetworkCreateReport, error)
+ NetworkCreate(ctx context.Context, network types.Network) (*types.Network, error)
NetworkDisconnect(ctx context.Context, networkname string, options NetworkDisconnectOptions) error
NetworkExists(ctx context.Context, networkname string) (*BoolReport, error)
NetworkInspect(ctx context.Context, namesOrIds []string, options InspectOptions) ([]types.Network, []error, error)