Don't validate a dev listen address as that makes a proper Docker

entrypoint difficult.

Fixes #1762
This commit is contained in:
Jeff Mitchell
2016-08-23 08:34:40 -04:00
parent 58611de06d
commit d5fcc1b74f

View File

@@ -130,10 +130,6 @@ func (c *ServerCommand) Run(args []string) int {
c.Ui.Error("Root token ID can only be specified with -dev")
flags.Usage()
return 1
case devListenAddress != "":
c.Ui.Error("Development address can only be specified with -dev")
flags.Usage()
return 1
}
}