summaryrefslogtreecommitdiff
path: root/cmd/podman/create.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2018-07-23 11:48:40 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-07-24 14:52:30 +0000
commit153d33814dd5cfb447b8e23ba9eac3bc6dfd8f2b (patch)
tree2eac10fe32ffa6064efee8ff0e33fb6e80195030 /cmd/podman/create.go
parent07fe4e51cb2fb5efa291320b07b36bad366822c5 (diff)
downloadpodman-153d33814dd5cfb447b8e23ba9eac3bc6dfd8f2b.tar.gz
podman-153d33814dd5cfb447b8e23ba9eac3bc6dfd8f2b.tar.bz2
podman-153d33814dd5cfb447b8e23ba9eac3bc6dfd8f2b.zip
We don't currently support --mac-address
Make this clear in the docs and Command. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Closes: #1138 Approved by: mheon
Diffstat (limited to 'cmd/podman/create.go')
-rw-r--r--cmd/podman/create.go4
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:]