diff options
Diffstat (limited to 'cmd/podman/create.go')
-rw-r--r-- | cmd/podman/create.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/podman/create.go b/cmd/podman/create.go index f147081d4..6fe68ebab 100644 --- a/cmd/podman/create.go +++ b/cmd/podman/create.go @@ -305,6 +305,10 @@ func parseCreateOpts(ctx context.Context, c *cli.Context, runtime *libpod.Runtim return nil, err } + if c.String("mac-address") != "" { + return nil, errors.Errorf("--mac-address option not currently supported") + } + imageID := "" inputCommand = c.Args()[1:] |