diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-01-14 18:55:20 -0500 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-01-16 09:23:32 -0500 |
commit | 45e9a6b12e74d50b8f6ab271c7800cb165f451e4 (patch) | |
tree | 5083048ba4ccf238dadd5c434528ee65b49fae62 /cmd/podman/utils.go | |
parent | 61fbce710b8d69e1203ea9055479a3f9dbe626b9 (diff) | |
download | podman-45e9a6b12e74d50b8f6ab271c7800cb165f451e4.tar.gz podman-45e9a6b12e74d50b8f6ab271c7800cb165f451e4.tar.bz2 podman-45e9a6b12e74d50b8f6ab271c7800cb165f451e4.zip |
Remove c.String(net)
We have a lot of cludgy code trying to make --net and --network equivalent.
This will allow --net to still exists but will eliminate the help and confusion.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cmd/podman/utils.go')
-rw-r--r-- | cmd/podman/utils.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/podman/utils.go b/cmd/podman/utils.go index 21389b43a..44e65b223 100644 --- a/cmd/podman/utils.go +++ b/cmd/podman/utils.go @@ -61,6 +61,8 @@ func aliasFlags(f *pflag.FlagSet, name string) pflag.NormalizedName { name = "health-start-period" case "healthcheck-timeout": name = "health-timeout" + case "net": + name = "network" } return pflag.NormalizedName(name) } |